generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathAssigment3 - David Casado.txt
216 lines (194 loc) · 11 KB
/
Assigment3 - David Casado.txt
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
1.Get all the properties that can be applied to instances of the Politician class (<http://dbpedia.org/ontology/Politician>)
prefix ex: <http://dbpedia.org/ontology/>
SELECT distinct ?property WHERE {
?x a ex:Politician.
?x ?property ?y
} LIMIT 30
property
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
http://www.w3.org/2000/01/rdf-schema#label
http://www.w3.org/2000/01/rdf-schema#comment
http://es.dbpedia.org/property/dead
http://es.dbpedia.org/property/enelcargo
http://es.dbpedia.org/property/equipoDebut
http://es.dbpedia.org/property/equipoRetiro
http://es.dbpedia.org/property/fortuna
http://es.dbpedia.org/property/oponentes
http://es.dbpedia.org/property/relaciones
http://es.dbpedia.org/property/retiro
http://www.w3.org/ns/prov#wasDerivedFrom
http://www.w3.org/2002/07/owl#sameAs
http://purl.org/dc/terms/subject
http://dbpedia.org/ontology/thumbnail
http://xmlns.com/foaf/0.1/depiction
http://es.dbpedia.org/property/3data
http://es.dbpedia.org/property/abreviaturaBot
http://es.dbpedia.org/property/afiliaciones
http://es.dbpedia.org/property/almaMater
http://es.dbpedia.org/property/almaMáter
http://es.dbpedia.org/property/almamater
http://es.dbpedia.org/property/almamáter
http://es.dbpedia.org/property/altura
http://es.dbpedia.org/property/ancho
http://es.dbpedia.org/property/apellido
http://es.dbpedia.org/property/apellidos
http://es.dbpedia.org/property/apellidosEditor
http://es.dbpedia.org/property/apodo
http://es.dbpedia.org/property/autor
2.Get all the properties, except rdf:type, that can be applied to instances of the Politician class
SELECT DISTINCT ?property
WHERE
{
?x a <http://dbpedia.org/ontology/Politician> .
{?isValueOf ?property ?x}
UNION
{?x ?property ?hasValue}
FILTER(!(?property = rdf:type))
} LIMIT 30
property
http://es.dbpedia.org/property/1data
http://es.dbpedia.org/property/candidato
http://es.dbpedia.org/property/comandanteJefe
http://es.dbpedia.org/property/comandantesDestacados
http://es.dbpedia.org/property/congresoPresidente
http://es.dbpedia.org/property/constructor
http://es.dbpedia.org/property/directorGeneral
http://es.dbpedia.org/property/enelcargo
http://es.dbpedia.org/property/equipoDebut
http://es.dbpedia.org/property/firmantes
http://es.dbpedia.org/property/hermano
http://es.dbpedia.org/property/impulsores
http://es.dbpedia.org/property/influidopor
http://es.dbpedia.org/property/jefeCeremonial
http://es.dbpedia.org/property/leader
http://es.dbpedia.org/property/lider
http://es.dbpedia.org/property/oponentes
http://es.dbpedia.org/property/participantes
http://es.dbpedia.org/property/partido2Coalición
http://es.dbpedia.org/property/partidoPredecesor
http://es.dbpedia.org/property/primerMinistro
http://es.dbpedia.org/property/primerTitular
http://es.dbpedia.org/property/primera
http://es.dbpedia.org/property/refe
http://es.dbpedia.org/property/saliente
http://es.dbpedia.org/property/signatories
http://es.dbpedia.org/property/suceso
http://es.dbpedia.org/property/lugares
http://es.dbpedia.org/property/supervivientes
http://es.dbpedia.org/property/firstminister
3.Which different values exist for the properties, except rdf:type, of the instances of the Politician class?
SELECT DISTINCT ?property ?hasValue
WHERE
{
?x a <http://dbpedia.org/ontology/Politician> .
?x ?property ?hasValue .
FILTER(!(?property = rdf:type))
} LIMIT 30
property hasValue
http://www.w3.org/2000/01/rdf-schema#label "Marcia Alicia Fernández Piña"@es
http://www.w3.org/2000/01/rdf-schema#label "Argentina Rubiera"@es
http://www.w3.org/2000/01/rdf-schema#label "Francisco Pizano de Brigard"@es
http://www.w3.org/2000/01/rdf-schema#label "Gabriel Barceló"@es
http://www.w3.org/2000/01/rdf-schema#label "Gabriel Cruz"@es
http://www.w3.org/2000/01/rdf-schema#label "Guillermo Novara"@es
http://www.w3.org/2000/01/rdf-schema#label "Gustavo Oliva"@es
http://www.w3.org/2000/01/rdf-schema#label "Mario Alberto Dávila Delgado"@es
http://www.w3.org/2000/01/rdf-schema#label "Raquel Barajas"@es
http://www.w3.org/2000/01/rdf-schema#label "Rodrigo Hermosilla Gatica"@es
http://www.w3.org/2000/01/rdf-schema#label "Sergio Sepúlveda Corvalán"@es
http://www.w3.org/2000/01/rdf-schema#label "Albert Botran"@es
http://www.w3.org/2000/01/rdf-schema#label "Antoni Castellà"@es
http://www.w3.org/2000/01/rdf-schema#label "Benet Salellas"@es
http://www.w3.org/2000/01/rdf-schema#label "Clemente Agosto"@es
http://www.w3.org/2000/01/rdf-schema#label "Diego García de García Vilas"@es
http://www.w3.org/2000/01/rdf-schema#label "Gabriela Serra"@es
http://www.w3.org/2000/01/rdf-schema#label "Gian Nicola Berti"@es
http://www.w3.org/2000/01/rdf-schema#label "Ingrid Schemelensky"@es
http://www.w3.org/2000/01/rdf-schema#label "Isabel Muradàs"@es
http://www.w3.org/2000/01/rdf-schema#label "Jesús Gerardo Izquierdo Rojas"@es
http://www.w3.org/2000/01/rdf-schema#label "Meritxell Ruiz"@es
http://www.w3.org/2000/01/rdf-schema#label "Meritxell Serret"@es
http://www.w3.org/2000/01/rdf-schema#label "Miriam Prado Carrascal"@es
http://www.w3.org/2000/01/rdf-schema#label "Pablo Pérez Tremps"@es
http://www.w3.org/2000/01/rdf-schema#label "Roque Sevilla"@es
http://www.w3.org/2000/01/rdf-schema#label "Santiago Aparicio"@es
http://www.w3.org/2000/01/rdf-schema#label "Mieko Yoshimura"@es
http://www.w3.org/2000/01/rdf-schema#label "Abdelkader Taleb Omar"@es
http://www.w3.org/2000/01/rdf-schema#label "Abel Caballero"@es
4.For each of the properties, except rdf:type, that can be applied to instances of the Politician class, which different values do they take in those instances?
prefix ex: <http://dbpedia.org/ontology/>
SELECT distinct ?x ?property ?y WHERE {
?x a ex:Politician.
?x ?property ?y
FILTER (?property != rdf:type)
} LIMIT 30
x property y
http://es.dbpedia.org/resource/Marcia_Alicia_Fernández_Piña http://www.w3.org/2000/01/rdf-schema#label "Marcia Alicia Fernández Piña"@es
http://es.dbpedia.org/resource/Argentina_Rubiera http://www.w3.org/2000/01/rdf-schema#label "Argentina Rubiera"@es
http://es.dbpedia.org/resource/Francisco_Pizano_de_Brigard http://www.w3.org/2000/01/rdf-schema#label "Francisco Pizano de Brigard"@es
http://es.dbpedia.org/resource/Gabriel_Barceló http://www.w3.org/2000/01/rdf-schema#label "Gabriel Barceló"@es
http://es.dbpedia.org/resource/Gabriel_Cruz http://www.w3.org/2000/01/rdf-schema#label "Gabriel Cruz"@es
http://es.dbpedia.org/resource/Guillermo_Novara http://www.w3.org/2000/01/rdf-schema#label "Guillermo Novara"@es
http://es.dbpedia.org/resource/Gustavo_Oliva http://www.w3.org/2000/01/rdf-schema#label "Gustavo Oliva"@es
http://es.dbpedia.org/resource/Mario_Alberto_Dávila_Delgado http://www.w3.org/2000/01/rdf-schema#label "Mario Alberto Dávila Delgado"@es
http://es.dbpedia.org/resource/Raquel_Barajas http://www.w3.org/2000/01/rdf-schema#label "Raquel Barajas"@es
http://es.dbpedia.org/resource/Rodrigo_Hermosilla_Gatica http://www.w3.org/2000/01/rdf-schema#label "Rodrigo Hermosilla Gatica"@es
http://es.dbpedia.org/resource/Sergio_Sepúlveda_Corvalán http://www.w3.org/2000/01/rdf-schema#label "Sergio Sepúlveda Corvalán"@es
http://es.dbpedia.org/resource/Albert_Botran http://www.w3.org/2000/01/rdf-schema#label "Albert Botran"@es
http://es.dbpedia.org/resource/Antoni_Castellà http://www.w3.org/2000/01/rdf-schema#label "Antoni Castellà"@es
http://es.dbpedia.org/resource/Benet_Salellas http://www.w3.org/2000/01/rdf-schema#label "Benet Salellas"@es
http://es.dbpedia.org/resource/Clemente_Agosto http://www.w3.org/2000/01/rdf-schema#label "Clemente Agosto"@es
http://es.dbpedia.org/resource/Diego_García_de_García_Vilas http://www.w3.org/2000/01/rdf-schema#label "Diego García de García Vilas"@es
http://es.dbpedia.org/resource/Gabriela_Serra http://www.w3.org/2000/01/rdf-schema#label "Gabriela Serra"@es
http://es.dbpedia.org/resource/Gian_Nicola_Berti http://www.w3.org/2000/01/rdf-schema#label "Gian Nicola Berti"@es
http://es.dbpedia.org/resource/Ingrid_Schemelensky http://www.w3.org/2000/01/rdf-schema#label "Ingrid Schemelensky"@es
http://es.dbpedia.org/resource/Isabel_Muradàs http://www.w3.org/2000/01/rdf-schema#label "Isabel Muradàs"@es
http://es.dbpedia.org/resource/Jesús_Gerardo_Izquierdo_Rojas http://www.w3.org/2000/01/rdf-schema#label "Jesús Gerardo Izquierdo Rojas"@es
http://es.dbpedia.org/resource/Meritxell_Ruiz http://www.w3.org/2000/01/rdf-schema#label "Meritxell Ruiz"@es
http://es.dbpedia.org/resource/Meritxell_Serret http://www.w3.org/2000/01/rdf-schema#label "Meritxell Serret"@es
http://es.dbpedia.org/resource/Miriam_Prado_Carrascal http://www.w3.org/2000/01/rdf-schema#label "Miriam Prado Carrascal"@es
http://es.dbpedia.org/resource/Pablo_Pérez_Tremps http://www.w3.org/2000/01/rdf-schema#label "Pablo Pérez Tremps"@es
http://es.dbpedia.org/resource/Roque_Sevilla http://www.w3.org/2000/01/rdf-schema#label "Roque Sevilla"@es
http://es.dbpedia.org/resource/Santiago_Aparicio http://www.w3.org/2000/01/rdf-schema#label "Santiago Aparicio"@es
http://es.dbpedia.org/resource/Mieko_Yoshimura http://www.w3.org/2000/01/rdf-schema#label "Mieko Yoshimura"@es
http://es.dbpedia.org/resource/Abdelkader_Taleb_Omar http://www.w3.org/2000/01/rdf-schema#label "Abdelkader Taleb Omar"@es
http://es.dbpedia.org/resource/Abel_Caballero http://www.w3.org/2000/01/rdf-schema#label "Abel Caballero"@es
5.For each of the properties, except rdf:type, that can be applied to instances of the Politician class, how many distinct values do they take in those instances?
SELECT distinct ?prop count(?z) as ?count
WHERE
{
?x a <http://dbpedia.org/ontology/Politician> .
?x ?prop ?z .
FILTER (?prop != rdf:type)
} LIMIT 30
prop count
http://es.dbpedia.org/property/estilopiedetabla 1
http://es.dbpedia.org/property/inicioSesiones 1
http://es.dbpedia.org/property/lider 3
http://es.dbpedia.org/property/salonRes 1
http://es.dbpedia.org/property/salonSesionesBaja 1
http://es.dbpedia.org/property/sedeBaja 2
http://es.dbpedia.org/property/tipoCámara 1
http://es.dbpedia.org/property/tipoLider 3
http://es.dbpedia.org/property/hija 1
http://es.dbpedia.org/property/abortos 1
http://es.dbpedia.org/property/deputyFirstminister 1
http://es.dbpedia.org/property/firstminister 2
http://es.dbpedia.org/property/vástago 1
http://es.dbpedia.org/property/webPage 1
http://es.dbpedia.org/property/gobrnador 1
http://es.dbpedia.org/property/tamanoimagen 1
http://es.dbpedia.org/property/aB 1
http://es.dbpedia.org/property/adjunto 1
http://es.dbpedia.org/property/causaDeLaMuerte 1
http://es.dbpedia.org/property/oficios 1
http://es.dbpedia.org/property/almaMaster 1
http://es.dbpedia.org/property/cargoAnterior 1
http://es.dbpedia.org/property/novia 1
http://es.dbpedia.org/property/sufijo 1
http://es.dbpedia.org/property/alongside 3
http://es.dbpedia.org/property/estudiosPrimariosYSecundarios 1
http://es.dbpedia.org/property/pocupación 1
http://es.dbpedia.org/property/predesor 1
http://es.dbpedia.org/property/nombreCorrecto 1
http://es.dbpedia.org/property/nominator 1