Project:DMV-Talk: Difference between revisions

From MaRDI portal
No edit summary
No edit summary
Line 1: Line 1:
## CRAN Packages
==== CRAN Packages ====
 
{{SPARQL|query=
{{SPARQL|query=PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/>
PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/>
SELECT ?item ?name
SELECT ?item ?name
WHERE {
WHERE {
Line 7: Line 7:
}
}
}}
}}
* Cran packages with publications
* Cran packages with publications
{{SPARQL|query=
{{SPARQL|query=
PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/>
PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/>
Line 15: Line 17:
} GROUP by ?item ?name
} GROUP by ?item ?name
}}
}}
Formulae from the DLMF{{SPARQL|query=
 
==== Formulae from the DLMF ====
{{SPARQL|query=


PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/>
PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/>
Line 34: Line 38:
}}
}}


People with 3 papers
===== People with 3 papers =====

Revision as of 14:23, 24 September 2023

CRAN Packages

PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/>
SELECT ?item ?name
WHERE {
  ?item wdt:P229 ?name
}
Try it!
  • Cran packages with publications
PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/>
SELECT ?item ?name (SAMPLE(?cites) as ?Publication)
WHERE {
  ?item wdt:P229 ?name ; wdt:P223 ?cites
} GROUP by ?item ?name
Try it!

Formulae from the DLMF

PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/>
PREFIX wd: <https://portal.mardi4nfdi.de/entity/>

SELECT (?dep2nd as ?qId) ?dlmfid ?definesLabel ?formula
WHERE {
  ?item wdt:P4 wd:Q1818 .
         ?item wdt:P3 ?defines .
       ?dep2nd wdt:P4 ?defines 
       FILTER( NOT EXISTS { ?dep2nd wdt:P4 wd:1818.})
         OPTIONAL{?dep2nd wdt:P2 ?dlmfid .}
                OPTIONAL{?dep2nd wdt:P14 ?formula .}      
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }

      }
Limit 10
Try it!
People with 3 papers