You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: episodes/05-intro_to_querying.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -170,7 +170,7 @@ In the first step we searched for cats. It is also possible to search for images
170
170
171
171
```
172
172
#defaultView:ImageGrid
173
-
#Normally, the default output is a table, but with the DefaultView we can directly specify that the results should be displayed in a grid
173
+
#Normally, the default output is a table, but with the defaultView we can directly specify that the results should be displayed in a grid
174
174
175
175
SELECT ?item ?itemLabel ?itemPic
176
176
#Show me the item, label and the picture of it.
@@ -182,7 +182,7 @@ WHERE
182
182
?item wdt:P18 ?itemPic. #Show me only cats with pictures. If you want to include very cats in your search, you need to place the Option{} function in front.
183
183
184
184
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
185
-
#Helps get the label in your language, if not, then en(glish) language
185
+
#Helps get the label in your language, if not, then english is selected as language
186
186
}
187
187
188
188
```
@@ -215,7 +215,7 @@ LIMIT 15
215
215
#Limit the shown results down to 15.
216
216
```
217
217
218
-
{alt='Example of displaying cats in grid format'}
218
+
{alt='Bubblechart of books weight by genre'}
219
219
220
220
221
221
**Map of NFDI Consortia in Germany**
@@ -284,7 +284,7 @@ HAVING (?participantsCount > 4)
284
284
285
285
```
286
286
287
-
{alt='Number of participants in NFDI consortia visualized'}
287
+
{alt='Number of participants in NFDI consortia visualized as bar chart'}
0 commit comments