Giter VIP home page Giter VIP logo

Comments (8)

fnielsen avatar fnielsen commented on July 29, 2024

There is now a co-author graph and a co-occuring topic graph for topics, but still no citation network. The problem is that labels are long (this could be alleviated by truncating the title) and that the number of citations make the plot cluttered.

from scholia.

fnielsen avatar fnielsen commented on July 29, 2024

There is now a (partial) citation graph for work aspect https://tools.wmflabs.org/scholia/work/Q27230311

from scholia.

fnielsen avatar fnielsen commented on July 29, 2024

The "partial" citation has limitations: max iterations is set to 1 and max visisted to 200 and the limit 100. It might be better to find some more appropriate values.

from scholia.

fnielsen avatar fnielsen commented on July 29, 2024

Author citation graph with exclusion of self-citation:

# #defaultView:Graph
SELECT ?citing_author ?citing_authorLabel ?cited_author ?cited_authorLabel
WITH {
  SELECT DISTINCT ?citing_author ?cited_author WHERE {
    # BIND(wd:Q45340488 AS ?topic)
    ?citing_work wdt:P50 ?citing_author ; 
               wdt:P921 wd:Q2013 .
    ?cited_work wdt:P921 wd:Q2013 .
    ?citing_work wdt:P2860 ?cited_work . 
    ?cited_work wdt:P50 ?cited_author .  
    FILTER (?citing_work != ?cited_work)
    FILTER NOT EXISTS {
      ?citing_work wdt:P50 ?author .
      ?citing_work wdt:P2860 ?cited_work .
      ?cited_work  wdt:P50 ?author .
    }
  }
} AS %results
WHERE {
  INCLUDE %results
 SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }        
 }

from scholia.

fnielsen avatar fnielsen commented on July 29, 2024

organization citation graph.

# #defaultView:Graph
SELECT ?citing_organization ?citing_organizationLabel ?cited_organization ?cited_organizationLabel
WITH {
  SELECT DISTINCT ?citing_organization ?cited_organization WHERE {
    # BIND(wd:Q2502726 AS ?topic)
    ?citing_author wdt:P108 ?citing_organization . 
    ?cited_author wdt:P108 ?cited_organization . 

    ?citing_work wdt:P50 ?citing_author . 
    ?citing_work wdt:P921 wd:Q202864 .
    ?cited_work wdt:P921 wd:Q202864  .
    ?citing_work wdt:P2860 ?cited_work . 
    ?cited_work wdt:P50 ?cited_author .  
    FILTER (?citing_work != ?cited_work)
    FILTER NOT EXISTS {
      ?citing_work wdt:P50 ?author .
      ?citing_work wdt:P2860 ?cited_work .
      ?cited_work  wdt:P50 ?author .
    }
  }
} AS %results
WHERE {
  INCLUDE %results
 SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }        
 }

from scholia.

Daniel-Mietchen avatar Daniel-Mietchen commented on July 29, 2024

I don't see Lydia on the author graph for Wikidata.

from scholia.

fnielsen avatar fnielsen commented on July 29, 2024

Lydia is in the author citation graph. For instance, Tomas Saez cites her

from scholia.

Daniel-Mietchen avatar Daniel-Mietchen commented on July 29, 2024

OK, see her now.

from scholia.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.