Link Analysis: Closeness centrality of anodes in a directed and undirected graph

Поделиться
HTML-код
  • Опубликовано: 31 дек 2024

Комментарии • 23

  • @computationallinguistics3734
    @computationallinguistics3734  3 года назад

    Hello viewers, the video on closeness centrality is redone for more clarity and detailed evaluation ruclips.net/video/HRMnyMG7DfA/видео.html

  • @plogghuy
    @plogghuy Год назад +1

    For those wondering the type is actually the normalised closeness centrality measure ie the closeness centrality divided by the total number of nodes -1. Since the pre normalised centrality is the sum raised to the -1 we get the type on screen

  • @francescos7361
    @francescos7361 2 года назад

    Thanks , for this educational contribution.

  • @muhammadhamza7033
    @muhammadhamza7033 3 года назад +1

    There is a path between 4 to 1 (4>3>2>1) and 6 to 1 (6>4>3>2>1). Kindly correct

    • @computationallinguistics3734
      @computationallinguistics3734  3 года назад +1

      The shortest paths are calculated from the reference node to all the other nodes. So if we are calculating it for node 1, we will have to look for the shortest path from node 1 to node 4.

  • @Samuel-wl4fw
    @Samuel-wl4fw 4 года назад

    Great video good work

  • @vicmurai1033
    @vicmurai1033 Год назад

    Thanks for the tutorial

  • @souravde6116
    @souravde6116 3 года назад +1

    While directed graph what is the logic of being taken 100? I did not understand. If there is no connection, it should be zero but not 100.

    • @computationallinguistics3734
      @computationallinguistics3734  3 года назад +2

      If you cannot reach from node A to node B so the distance between them is considered to be infinite. Since, we cannot use infinity in our code and we want to get a numeric value, so we assume a value that is very high. Therefore, the value 100 is used as an alternate value for infinity, which can be any other value.

    • @computationallinguistics3734
      @computationallinguistics3734  3 года назад

      Here is another video on the same topic that will be of more help: ruclips.net/video/HRMnyMG7DfA/видео.html

    • @Agrover112
      @Agrover112 3 года назад

      the distance to reach is basically Infinity , 0 means it's kinda the same node so instead of INF we take a large number, since 1/INF=0 which we want to avoid

  • @anchitagarwal1334
    @anchitagarwal1334 3 года назад +1

    how is distance from node1 to node4 = 2??

    • @computationallinguistics3734
      @computationallinguistics3734  3 года назад +1

      We first assumed the graph to be undirected. So ignoring the node's directionality, we can reach from node 1 to node 4 minimum in two hops i.e., from node 1 to node 3 and then from node 3 to node 4.

  • @ragilchelvin6964
    @ragilchelvin6964 3 года назад +1

    I'm sorry sir, can you tell me about your reference to count it, please ? I will use that for citation of my bachelor thesis Thank you..

  • @ericfricke4512
    @ericfricke4512 3 года назад

    Great stuff. Thanks!

  • @LCW9714
    @LCW9714 3 года назад +1

    Excuse me.
    May I ask a question?
    Do you know where is the source of this equation.
    I want to know who is the author of the centrality degree equation, and the name of the paper.
    Thank you very much.

    • @computationallinguistics3734
      @computationallinguistics3734  3 года назад +1

      Well, there are many recent works that have mentioned these approaches. In fact, there are many different variants of them. Some have explained their working in text while others have provided equations. But if you want to know the original source where these measures were first introduced, that would be hard to find because these are some of the pioneering works and dates back to the start of the graph theory, the Konigberg bridge problem and euler graph in 1736. Searches on these keywords returned few articles from 1950s but they were in a language, I don't understand.

    • @LCW9714
      @LCW9714 3 года назад

      @@computationallinguistics3734 I am really appreciate for your reply.
      Thank you very much, you help me a lot.
      Your videos are really clear to understand.
      Thank you🙏

    • @computationallinguistics3734
      @computationallinguistics3734  3 года назад +1

      Here is another video on the same topic that will be of more help: ruclips.net/video/HRMnyMG7DfA/видео.html

    • @LCW9714
      @LCW9714 3 года назад

      @@computationallinguistics3734 thank you very much🙏🙏🙏🙏🙏

  • @ShubhamKumar-nu8rt
    @ShubhamKumar-nu8rt 9 месяцев назад

    How n=6 and not 7?

  • @rubenbarkoudah3635
    @rubenbarkoudah3635 3 года назад

    very helpful!