GetNodeClustCf (SWIG)
'''''''''''''''''''''

.. function:: GetNodeClustCf(Graph, NId) 
   :noindex:

Returns clustering coefficient of a particular node. Considers the graph as undirected.

Parameters:

- *Graph*: graph (input)
    A Snap.py graph or a network.

- *NId*: int (input)
    A node id in the *Graph*.

Return value:

- float
    Clustering coefficient of a particular node.


The following example shows how to calculate clustering coefficient of a particular node in
:class:`TNGraph`, :class:`TUNGraph`, and :class:`TNEANet`::

    import snap

    Graph = snap.GenRndGnm(snap.PNGraph, 100, 1000)
    snap.GetNodeClustCf(Graph, 50)

    UGraph = snap.GenRndGnm(snap.PUNGraph, 100, 1000)
    snap.GetNodeClustCf(UGraph, 50)

    Network = snap.GenRndGnm(snap.PNEANet, 100, 1000)
    snap.GetNodeClustCf(Network, 50)