Courses/Wissenschaftliches Arbeiten SS24: Difference between revisions
m (→Vorschau: add note) |
|||
| (14 intermediate revisions by 3 users not shown) | |||
| Line 8: | Line 8: | ||
<!-- Links to important/official resources --> | <!-- Links to important/official resources --> | ||
<div style="width:40em; padding-bottom: 7px; background-color:#fff2e5; border: solid 2px #ffcc99"> | <div style="width:40em; padding-bottom: 7px; background-color:#fff2e5; border: solid 2px #ffcc99"> | ||
* GRIPS | * Der Kurs in [https://elearning.uni-regensburg.de/course/view.php?id=66733 GRIPS] | ||
* Der Kurs in [https://spur.uni-regensburg.de:443/qisserver/pages/startFlow.xhtml?_flowId=detailView-flow&unitId=22986&periodId=425&navigationPosition=courseoverviewShow SPUR] | * Der Kurs in [https://spur.uni-regensburg.de:443/qisserver/pages/startFlow.xhtml?_flowId=detailView-flow&unitId=22986&periodId=425&navigationPosition=courseoverviewShow SPUR] | ||
* Das GraphIT-Item für den Kurs [[Item:Q926]] | |||
</div> | </div> | ||
| Line 51: | Line 52: | ||
<blockquote> | <blockquote> | ||
Für | Für einen Graph, der den gesamten Kurs darstellt, klicken Sie [https://tinyurl.com/222djpkn hier]. | ||
</blockquote> | </blockquote> | ||
| Line 65: | Line 66: | ||
PREFIX wd: <https://graphit.ur.de/entity/> | PREFIX wd: <https://graphit.ur.de/entity/> | ||
select distinct | select distinct | ||
?Vorwissen ? | ?Vorwissen ?VorwissenLabel | ||
where { | where { | ||
wd:Q926 wdt:P14/wdt:P14 ?item. # get all items in course | wd:Q926 wdt:P14/wdt:P14 ?item. # get all items in course | ||
?item wdt:P1 ? | ?item wdt:P1 ?Vorwissen. # get the prerequsites | ||
MINUS { wd:Q926 wdt:P14/wdt:P14 ? | MINUS { wd:Q926 wdt:P14/wdt:P14 ?Vorwissen} # filter out all prereqs that are included in the course | ||
service wikibase:label { bd:serviceParam wikibase:language "en".} | service wikibase:label { bd:serviceParam wikibase:language "en".} | ||
| Line 102: | Line 101: | ||
<div style="border: solid 5px #d2d6e0; background-color:#eaecf0;"> | <div style="border: solid 5px #d2d6e0; background-color:#eaecf0;"> | ||
{{#widget:SPARQLquery|code= | {{#widget:SPARQLquery|code= | ||
#defaultView: | #defaultView:Timeline | ||
# title: Alle geplanten Termine | # title: Alle geplanten Termine | ||
PREFIX wdt: <https://graphit.ur.de/prop/direct/> | PREFIX wdt: <https://graphit.ur.de/prop/direct/> | ||
PREFIX wd: <https://graphit.ur.de/entity/> | PREFIX wd: <https://graphit.ur.de/entity/> | ||
select distinct ?Datum ?Inhalte | select distinct ?Datum ?Inhalte ?InhalteLabel | ||
?item # for debug | # ?item # for debug | ||
where { | where { | ||
# todo. change Q:468 to current course | # todo. change Q:468 to current course | ||
wd:Q926 wdt:P14 ? | wd:Q926 wdt:P14 ?Inhalte. | ||
? | ?Inhalte wdt:P3 wd:Q427. | ||
? | ?Inhalte wdt:P19 ?Datum. | ||
? | ?Inhalte skos:altLabel ?InhalteLabel. # get alias instead of label | ||
FILTER (!regex(? | FILTER (!regex(?InhalteLabel, "WissArb", "i")) | ||
service wikibase:label { bd:serviceParam wikibase:language "en".} | service wikibase:label { bd:serviceParam wikibase:language "en".} | ||
} ORDER BY ASC(?Datum) | } ORDER BY ASC(?Datum) | ||
| Line 124: | Line 123: | ||
== Vorschau == | == Vorschau == | ||
Eine Liste an Items, die in der nächsten Woche besprochen werden. | Eine Liste an Items, die in der nächsten Woche besprochen werden. | ||
<div style="border: solid 5px #d2d6e0; background-color:#eaecf0;"> | <div style="border: solid 5px #d2d6e0; background-color:#eaecf0;"> | ||
| Line 131: | Line 129: | ||
PREFIX wdt: <https://graphit.ur.de/prop/direct/> | PREFIX wdt: <https://graphit.ur.de/prop/direct/> | ||
PREFIX wd: <https://graphit.ur.de/entity/> | PREFIX wd: <https://graphit.ur.de/entity/> | ||
select distinct ?today ?sessionDate ?interested ?completed | select distinct # ?today | ||
?sessionDate ?interested ?completed | |||
?item ?itemLabel | ?item ?itemLabel | ||
?resource ?url ?typeLabel | ?resource ?resourceLabel ?url ?typeLabel | ||
where { | where { | ||
| Line 140: | Line 139: | ||
WHERE { | WHERE { | ||
# get all sessions, that are "bigger" than today | # get all sessions, that are "bigger" than today | ||
BIND(" | # BIND("2024-04-29"^^xsd:dateTime as ?today) # for test | ||
BIND(now() as ?today) # for real | |||
wd: | wd:Q926 wdt:P14 ?session. | ||
?session wdt:P3 wd:Q427. | ?session wdt:P3 wd:Q427. | ||
?session wdt:P19 ?sessionDate. | ?session wdt:P19 ?sessionDate. | ||
FILTER(?sessionDate > ?today). | # FILTER(?sessionDate > ?today). | ||
} LIMIT 1 | FILTER(xsd:date(?sessionDate) >= xsd:date(?today)). | ||
} ORDER BY ASC(?sessionDate) | |||
LIMIT 1 # limit to 1 session | |||
} # end of subquery | } # end of subquery | ||
?session wdt:P14 ?item. | ?session wdt:P14 ?item. | ||
OPTIONAL {?item wdt:P21 ?resource. | OPTIONAL {?item wdt:P21 ?resource. | ||
| Line 188: | Line 188: | ||
<small>Bei Anmeldung, wird die Query auf den angemeldeten Account personalisiert </small> | <small>Bei Anmeldung, wird die Query auf den angemeldeten Account personalisiert </small> | ||
== Vorwissen & Interessen == | |||
{{#widget:SPARQLquery|code= | |||
#defaultView:SwarmScatterChart | |||
PREFIX wd: <https://graphit.ur.de/entity/> | |||
PREFIX wdt: <https://graphit.ur.de/prop/direct/> | |||
SELECT DISTINCT ?known ?interests ?item ?itemLabel # ?known ?interests ?item ?itemLabel | |||
WHERE { | |||
wd:Q926 wdt:P14/wdt:P14 ?item. | |||
# ?student wdt:P25 wd:Q926. | |||
OPTIONAL { | |||
SELECT ?item ?itemLabel (COUNT(DISTINCT ?student) as ?known) WHERE { | |||
?student wdt:P25 wd:Q926. | |||
?student wdt:P12 ?item. | |||
} GROUP BY ?item ?itemLabel | |||
} | |||
OPTIONAL { | |||
SELECT ?item ?itemLabel (COUNT(DISTINCT ?student) as ?interests) WHERE { | |||
?student wdt:P25 wd:Q926. | |||
?student wdt:P23 ?item. | |||
} GROUP BY ?item ?itemLabel | |||
}. | |||
BIND (IF(!BOUND(?interests), 0, ?interest) as ?interests). | |||
BIND (IF(!BOUND(?known), 0, ?known) as ?known). | |||
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } | |||
} | |||
}} | |||
==Erste Schritte mit GraphIT== | ==Erste Schritte mit GraphIT== | ||
[https://graphit.ur.de/wiki/First_Steps Hier] kann man sich eine Anleitung für die ersten Schritte mit GraphIT anschauen. | |||
Latest revision as of 10:12, 10 August 2026
✒️ This page is currently only available in German.
B.A. Medieninformatik, Universität Regensburg.
Überblick
Der Kurs ergänzt und vertieft die Inhalte aus dem Propädeutikum.
| Wichtige Themen |
|---|
| Ausführlichere Query |
Insbesondere in den Bereichen wissenschaftliches Schreiben, wissenschaftliche Fachsprache und der Aufbereitung von Forschungsdaten und -literatur wird das Wissen Studierender weiterentwickelt.
Das anschließende Forschungsseminar MMI baut auf diesem Kurs auf
Für eine erste Orientierung: siehe Erste Schritte
Für einen Graph, der den gesamten Kurs darstellt, klicken Sie hier.
| Vorwissen | Ziele |
|---|---|
|
Items, die nicht Teil des Kurses, aber Vorwissen für behandelte Inhalte sind |
Items, die als Ziele für den Kurs markiert wurden |
| Vollbildansicht der Query | Vollbildansicht der Query |
Zeitplan
Alle geplanten Termine
Vorschau
Eine Liste an Items, die in der nächsten Woche besprochen werden.
Eine Todolist für Max Mustermann
Bei Anmeldung, wird die Query auf den angemeldeten Account personalisiert
Vorwissen & Interessen
Erste Schritte mit GraphIT
Hier kann man sich eine Anleitung für die ersten Schritte mit GraphIT anschauen.