forked from eguetti/VitrineNeuroMAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsultas_Vitrine
137 lines (95 loc) · 3.97 KB
/
Consultas_Vitrine
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
Link da página Vitrine NeuroMAT
https://vitrine.numec.prp.usp.br/
Link da pre visualização HTML do index
https://htmlpreview.github.io/?https://github.com/eguetti/VitrineNeuroMAT/blob/main/index.html
Consultas Eder
https://pt.wikipedia.org/wiki/Wikip%C3%A9dia:GLAM/CEPID_NeuroMat/Pesquisa
Tutorial de Wikidata Query Service: https://wdqs-tutorial.toolforge.org/
Artigo completo: Infinite Systems of Interacting Chains with Memory of Variable Length—A Stochastic Model for Biological Neural Nets
https://www.wikidata.org/wiki/Q56592766
No contexto do CEPID NeuroMat, participaram desta linha [XX] pesquisadores
-----------------------------------------
Número de pesquisadores do NeuroMat
----------------------------------------
-------------------------------------------------------------------------------------
Artigos Neuromat que não citam outros artigos NeuroMat:
https://w.wiki/3Dv4
------------------------------------------------------------------------------------
SELECT DISTINCT ?artigo1 WHERE {
?artigo1 wdt:P361 wd:Q18477654.
?artigo1 wdt:P2860 ?artigo2.
FILTER NOT EXISTS{?artigo2 wdt:P361 wd:Q18477654.}
}
--------------------------------------------------
Artigos Neuro Mat com Topicos Principais declarados
https://w.wiki/3KEy
------------------------------------------------------------------------
SELECT DISTINCT ?artigo ?artigoLabel ?url WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?artigo wdt:P361 wd:Q18477654.
OPTIONAL{?artigo wdt:P953 ?url}
FILTER EXISTS{?artigo wdt:P921 [].}
}
--------------------------------------
Número de artigos do NeuroMat
---------------------------------
SELECT (count (DISTINCT ?artigos) as ?Artigos) WHERE {
?artigos wdt:P361 wd:Q18477654.
}
--------------------------------------------------
Evolução das áreas de pesquisa
Artigos com tópico (P921):
https://w.wiki/3Duw
--------------------------------------------------
#defaultView:BarChart
SELECT DISTINCT ?data (COUNT(?NeuroMat) AS ?number) ?keyLabel WHERE {
?NeuroMat wdt:P361 wd:Q18477654.
?NeuroMat wdt:P577 ?dataTemp.
BIND(STR(YEAR(?dataTemp)) AS ?data)
?NeuroMat wdt:P921 ?key.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".}
}
GROUP BY ?key ?keyLabel ?data
#defaultView:LineChart
SELECT DISTINCT ?data (COUNT(?NeuroMat) AS ?number) ?keyLabel (?keyLabel AS ?storyboard) WHERE {
?NeuroMat wdt:P361 wd:Q18477654.
?NeuroMat wdt:P577 ?data_.
BIND(STR(YEAR(?data_)) AS ?data)
?NeuroMat wdt:P921 ?key.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?key ?keyLabel ?data ?dataLabel
--------------------------------------------------
Áreas de pesquisa emergidas
------------------------------------------------
#defaultView:BubbleChart
SELECT DISTINCT ?key ?keyLabel (COUNT(?NeuroMat) AS ?number) WHERE {
?NeuroMat wdt:P361 wd:Q18477654.
?NeuroMat wdt:P577 ?data_.
?NeuroMat wdt:P921 ?key.
BIND(STR(YEAR(?data_)) AS ?data)
FILTER(?data>="2013")
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?key ?keyLabel ORDER BY ASC(?data)
--------------------------------------------------
Distribuição de autores em publicações do NeuroMat por gênero
--------------------------------------------------
#defaultView:BarChart
SELECT DISTINCT ?data ?num ?gen_tempLabel WHERE {
{
SELECT DISTINCT ?data ?gen_temp (COUNT(?pesquisadores) AS ?num) WHERE {
?obras wdt:P361 wd:Q18477654;
wdt:P50 ?pesquisadores.
?pesquisadores wdt:P21 ?gen_temp.
?obras wdt:P577 ?data_temp.
BIND(STR(YEAR(?data_temp)) AS ?data)
}
GROUP BY ?data ?gen_temp
ORDER BY (?data)
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Áreas de pesquisa em colaboração com autores internacionais
-----------------------------
Linha do tempo dos trabalhos com pesquisdores internacionais.