diff --git a/timelines/data/first-names-gender.Rdata b/timelines/data/first-names-gender.Rdata new file mode 100644 index 0000000000000000000000000000000000000000..7b9a558a9081cff4fb32be3d16cf8c8312e7d9d2 Binary files /dev/null and b/timelines/data/first-names-gender.Rdata differ diff --git a/timelines/data/jls-editors.xlsx b/timelines/data/jls-editors.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..9b143a4f05a8ee88a066edfc34ae64988178b7ec Binary files /dev/null and b/timelines/data/jls-editors.xlsx differ diff --git a/timelines/data/zfrsoz-articles.Rdata b/timelines/data/zfrsoz-articles.Rdata new file mode 100644 index 0000000000000000000000000000000000000000..6a2230c7869528be75c011a6471c055fa57f5d90 Binary files /dev/null and b/timelines/data/zfrsoz-articles.Rdata differ diff --git a/timelines/data/zfrsoz-authors-reconciled.xlsx b/timelines/data/zfrsoz-authors-reconciled.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..bc332ab9acf1db27e22e1b0698a062f81276a851 Binary files /dev/null and b/timelines/data/zfrsoz-authors-reconciled.xlsx differ diff --git a/timelines/data/zfrsoz-authors.xlsx b/timelines/data/zfrsoz-authors.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..781f0e546b3abd046377923ef5a4aeb9f69f51aa Binary files /dev/null and b/timelines/data/zfrsoz-authors.xlsx differ diff --git a/timelines/data/zfrsoz-editors.xlsx b/timelines/data/zfrsoz-editors.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..d74f5aec9106553429e65ce65410821bcdbbd985 Binary files /dev/null and b/timelines/data/zfrsoz-editors.xlsx differ diff --git a/biographic-timelines/jls-editorial-board.rmd b/timelines/jls-editorial-board.rmd similarity index 100% rename from biographic-timelines/jls-editorial-board.rmd rename to timelines/jls-editorial-board.rmd diff --git a/timelines/zfrsoz-author-gender.rmd b/timelines/zfrsoz-author-gender.rmd new file mode 100644 index 0000000000000000000000000000000000000000..84b5f39d2c63dd524f91857632ca084526d97fb4 --- /dev/null +++ b/timelines/zfrsoz-author-gender.rmd @@ -0,0 +1,97 @@ +--- +title: "ZfRsoz gender of authors" +output: html_notebook +--- + + +```{r} +library(ggplot2) +library(dplyr) +library(tidyr) +library(tibbletime) +library(openxlsx) +library(timevis) +library(vistime) +library(stringr) + +# Gender of authors +plotAuthorsGender = function(authors) { + barplot(table(authors$gender), ylab = "Number of individual authors", main = "Gender of authors") +} + +# Disciplinary background (bad data) +plotAuthorsDiscipline = function(authors) { + tab <- table(authors$discipline, useNA = "ifany") + names(tab)[is.na(names(tab))] <- "unknown" + barplot(tab, ylab = "Number of individual authors", main = "Disciplinary background of authors") +} + +# Most articles published +plotMostArticlesPublished <- function(authors) { + threshold = quantile(authors$article_count, 0.9) + authors$label = ifelse(authors$article_count > threshold, authors$full_name, NA) + + most_productive_authors <- authors %>% + filter(!is.na(label)) %>% + group_by(article_count) + + p <- ggplot(data = most_productive_authors, aes(x = label, y = article_count)) + + geom_bar(aes(fill = label, x = reorder(label, article_count)), stat = "identity", show.legend = FALSE) + + ggtitle("Authors with most articles published (including reviews)") + + theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5)) + + ylab("Article Count") + + xlab("") + + geom_col() + + coord_flip() + p +} + +plotAuthorsGenderTimeseries = function(articles) { + gender_by_year = articles %>% + mutate(year = format(date, "%Y")) %>% + group_by(year) %>% + count(gender) %>% + pivot_wider(names_from = gender, values_from = n, values_fill = 0) + gender_by_year$sum <- rowSums(gender_by_year[2:3]) + max_num_articles = max(gender_by_year$sum) + gender_by_year$female_percent <- as.numeric(gender_by_year$female / (gender_by_year$male + gender_by_year$female) * max_num_articles) + + + p <- gender_by_year[, 1:3] %>% + pivot_longer(-year) %>% + ggplot(aes(x = year, y = value, fill = name)) + + ggtitle("Articles published with gender distribution") + + geom_bar(stat = 'identity') + + geom_line( + data = gender_by_year[, -2:-4], + mapping = aes(x = year, y = female_percent, group = 1), + size = 1, color = "red", inherit.aes = FALSE + ) + + geom_smooth( + data = gender_by_year[, -2:-4], + mapping = aes(x = year, y = female_percent, group = 1), + size = 1, color = "orange", inherit.aes = FALSE, + method = "lm", + ) + + scale_y_continuous( + sec.axis = sec_axis( + trans = ~. / (max_num_articles), + name = "Percentage of female authors", + labels = function(b) { paste0(round(b * 100, 0), "%") } + ) + ) + + theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5), + axis.text.y.right = element_text(color = "red")) + + labs(x = "Year", y = "Articles", fill = 'Gender') + p +} +``` + +Type any R code in the chunk, for example: +```{r} +mycars <- within(mtcars, { cyl <- ordered(cyl) }) +mycars +``` + +Now, click the **Run** button on the chunk toolbar to [execute](https://www.jetbrains.com/help/pycharm/r-markdown.html#run-r-code) the chunk code. The result should be placed under the chunk. +Click the **Knit and Open Document** to build and preview an output. diff --git a/timelines/zfrsoz-editors.rmd b/timelines/zfrsoz-editors.rmd new file mode 100644 index 0000000000000000000000000000000000000000..51903108c5633ee262df1e6c260f27cf7d8e1994 --- /dev/null +++ b/timelines/zfrsoz-editors.rmd @@ -0,0 +1,38 @@ +--- +title: "R Notebook" +output: html_notebook +--- + + +```{r} +library(ggplot2) +library(dplyr) +library(tidyr) +library(tibbletime) +library(openxlsx) +library(timevis) +library(vistime) +library(stringr) + +plotEditorsTenure <- function() { + authors <- read.xlsx("authors-reconciled.xlsx") |> + mutate( + Geburtsdatum <- ifelse(is.na(Geburtsdatum), "", substr(Geburtsdatum, 1,4)), + Sterbedatum <- ifelse(is.na(Sterbedatum), "", substr(Sterbedatum, 1,4)) + ) + editors <- read.xlsx("editors.xlsx") |> + merge(authors, by="Name") |> + mutate( + content <- paste(Name," (", Geburtsdatum, "-", Sterbedatum, ")", sep=""), + title <- content, + start <- paste(start, "-06-01", sep=""), + end <- str_c(ifelse(is.na(end), "2030", end), "-06-01"), + #event <- content + ) + timevis(editors) +} + +``` + +Now, click the **Run** button on the chunk toolbar to [execute](https://www.jetbrains.com/help/pycharm/r-markdown.html#run-r-code) the chunk code. The result should be placed under the chunk. +Click the **Knit and Open Document** to build and preview an output. diff --git a/wikidata/input/Raymund Werle.txt b/wikidata/input/Raymund Werle.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dab205d947399930ea0ec1b0d29f8861c4a0721 --- /dev/null +++ b/wikidata/input/Raymund Werle.txt @@ -0,0 +1,3 @@ +https://www.sowi.uni-stuttgart.de/institut/team/Werle/ + +Im November 2021 ist unser hochgeschätzter Kollege und Freund Raymund Werle im Alter von 77 Jahren verstorben. Raymund Werle hat die deutsche und europäische Techniksoziologie über mehrere Jahrzehnte maßgeblich mitgestaltet und mitgeprägt. Als langjähriger Senior Researcher am Max-Planck-Institut für Gesellschaftsforschung (MPIfG) in Köln hat er den kleinen, aber feinen Forschungsbereich ‚Wissenschaft, Technik und Innovation‘ aufgebaut und geleitet – und Technikforschung immer als konstitutiven Bestandteil der Erforschung moderner, im Kern soziotechnisch verfasster Gesellschaften begriffen. Sein wissenschaftlicher Output war immens: Hervorzuheben sind zahllose techniksoziologische Arbeiten, insbesondere zum Zusammenspiel technischer und institutioneller Innovationen; technologiepolitisch ausgerichtete Texte, etwa zur Regulierung und Governance von Kommunikations- und Informationstechniken und des Internet; sowie aus den letzten Jahren seiner wissenschaftlichen Tätigkeit Arbeiten zu Regeln des Schutzes geistigen Eigentums und zur Kommodifizierung von Wissen. Neben seiner Forschungs- und Publikationstätigkeit war Raymund Werle auch ein auf unaufdringliche Weise integrativ arbeitender Netzwerker, der Kolleginnen und Kollegen aus den unterschiedlichsten Bereichen zusammenzubringen vermochte. Als Vorsitzender des Publikationsausschusses am MPIfG hatte er über die Jahre enge Kontakte zu zahllosen Gutachterinnen und Gutachtern aus dem In- und Ausland aufgebaut. Zudem war er lange Zeit im Vorstand und zeitweise auch Sprecher der Sektion Wissenschafts- und Technikforschung der Deutschen Gesellschaft für Soziologie. Bereits Ende der 1990er Jahre hatte er darüber hinaus das Research Network ‚Sociology of Science and Technology (SSTNET)‘ der European Sociological Association (ESA) mitbegründet und es anschließend als Sprecher und Vorstandsmitglied sehr aktiv mitgestaltet. Nicht unterschlagen werden sollen schließlich seine nahezu enzyklopädischen Kenntnisse der ersten und zweiten Fußball-Bundesliga (seit den Gründungszeiten!), seine hohe Kompetenz in der Espresso-Zubereitung sowie der knochentrockene Humor, der ihn auszeichnete. \ No newline at end of file diff --git a/wikidata/output/scholars-de.csv b/wikidata/output/scholars-de.csv index 661ecc8ce4666e6bc67d20f6927b37339f1951a2..705fd926abaaeb48d5420b626c5d558eaa7e974a 100644 --- a/wikidata/output/scholars-de.csv +++ b/wikidata/output/scholars-de.csv @@ -1,6 +1,6 @@ fullName,qid,itemdesc,sexOrGender,familyName,givenName,dateOfBirth,dateOfDeath,wikidata_url,wikipedia_en,wikipedia_de Karl Renner,Q11726,first President of Austria (1870–1950),male,Renner,Karl,1870-12-14 00:00:00+00:00,1950-12-31 00:00:00+00:00,http://www.wikidata.org/entity/Q11726,https://en.wikipedia.org/wiki/Karl_Renner,https://de.wikipedia.org/wiki/Karl_Renner -Hugo Sinzheimer,Q86043,German politician (1875-1945),male,Sinzheimer,Hugo D.,1875-01-01 00:00:00+00:00,1945-09-16 00:00:00+00:00,http://www.wikidata.org/entity/Q86043,https://en.wikipedia.org/wiki/Hugo_Sinzheimer,https://de.wikipedia.org/wiki/Hugo_Sinzheimer +Hugo Sinzheimer,Q86043,German politician (1875-1945),male,Sinzheimer,D. Hugo,1875-01-01 00:00:00+00:00,1945-09-16 00:00:00+00:00,http://www.wikidata.org/entity/Q86043,https://en.wikipedia.org/wiki/Hugo_Sinzheimer,https://de.wikipedia.org/wiki/Hugo_Sinzheimer Arthur Nussbaum,Q103088,German American jurist,male,Nussbaum,Arthur,1877-01-01 00:00:00+00:00,1964-01-01 00:00:00+00:00,http://www.wikidata.org/entity/Q103088,https://en.wikipedia.org/wiki/Arthur_Nussbaum,https://de.wikipedia.org/wiki/Arthur_Nussbaum Ludwig Bendix,Q15449424,"German economist, civil law notary and lawyer (1877–1954)",male,Bendix,Ludwig,1877-06-28 00:00:00+00:00,1954-01-03 00:00:00+00:00,http://www.wikidata.org/entity/Q15449424,,https://de.wikipedia.org/wiki/Ludwig_Bendix Hans Kelsen,Q84165,Austrian lawyer,male,Kelsen,Hans,1881-10-11 00:00:00+00:00,1973-04-19 00:00:00+00:00,http://www.wikidata.org/entity/Q84165,https://en.wikipedia.org/wiki/Hans_Kelsen,https://de.wikipedia.org/wiki/Hans_Kelsen @@ -9,15 +9,24 @@ Ernst Fraenkel,Q86812,political scientist (1898-1975),male,Fraenkel,Ernst,1898-1 Franz Leopold Neumann,Q63195,German political activist,male,Neumann,Leopold Franz,1900-05-23 00:00:00+00:00,1954-09-02 00:00:00+00:00,http://www.wikidata.org/entity/Q63195,https://en.wikipedia.org/wiki/Franz_Neumann_(political_scientist),https://de.wikipedia.org/wiki/Franz_Neumann_(Politikwissenschaftler) Otto Kahn-Freund,Q121832,German-British jurist,male,Kahn Freund,Otto,1900-11-17 00:00:00+00:00,1979-06-16 00:00:00+00:00,http://www.wikidata.org/entity/Q121832,https://en.wikipedia.org/wiki/Otto_Kahn-Freund,https://de.wikipedia.org/wiki/Otto_Kahn-Freund Ernst Eduard Hirsch,Q107033,German judge (1902-1985),male,Hirsch,Ernst,1902-01-20 00:00:00+00:00,1985-03-29 00:00:00+00:00,http://www.wikidata.org/entity/Q107033,,https://de.wikipedia.org/wiki/Ernst_Eduard_Hirsch +Erich Fechner,Q26233977,,male,,Erich,1903-12-23 00:00:00+00:00,1991-02-10 00:00:00+00:00,http://www.wikidata.org/entity/Q26233977,,https://de.wikipedia.org/wiki/Erich_Fechner Otto Kirchheimer,Q214397,German-American legal scholar,male,Kirchheimer,Otto,1905-11-11 00:00:00+00:00,1965-11-22 00:00:00+00:00,http://www.wikidata.org/entity/Q214397,https://en.wikipedia.org/wiki/Otto_Kirchheimer,https://de.wikipedia.org/wiki/Otto_Kirchheimer +Wolfgang Abendroth,Q69166,German polticial scientist and jurist (1906–1985),male,Abendroth,Wolfgang,1906-05-02 00:00:00+00:00,1985-09-15 00:00:00+00:00,http://www.wikidata.org/entity/Q69166,https://en.wikipedia.org/wiki/Wolfgang_Abendroth,https://de.wikipedia.org/wiki/Wolfgang_Abendroth +René König,Q76112,German sociologist (1906-1992),male,König,René,1906-07-05 00:00:00+00:00,1992-03-21 00:00:00+00:00,http://www.wikidata.org/entity/Q76112,https://en.wikipedia.org/wiki/Ren%C3%A9_K%C3%B6nig,https://de.wikipedia.org/wiki/Ren%C3%A9_K%C3%B6nig Helmut Schelsky,Q104272,German sociologist (1912-1984),male,,Helmut,1912-10-14 00:00:00+00:00,1984-02-24 00:00:00+00:00,http://www.wikidata.org/entity/Q104272,https://en.wikipedia.org/wiki/Helmut_Schelsky,https://de.wikipedia.org/wiki/Helmut_Schelsky Hans Ryffel,Q21035905,(1913-1989),male,Ryffel,Hans,1913-06-27 00:00:00+00:00,1989-09-30 00:00:00+00:00,http://www.wikidata.org/entity/Q21035905,,https://de.wikipedia.org/wiki/Hans_Ryffel_(Rechtsphilosoph) +Ulrich Klug,Q1802787,German politician (1913-1993),male,,Ulrich,1913-11-07 00:00:00+00:00,1993-05-07 00:00:00+00:00,http://www.wikidata.org/entity/Q1802787,,https://de.wikipedia.org/wiki/Ulrich_Klug Theo Rasehorn,Q1304659,German judge and author,male,,Theo,1918-10-26 00:00:00+00:00,2016-01-16 00:00:00+00:00,http://www.wikidata.org/entity/Q1304659,,https://de.wikipedia.org/wiki/Theo_Rasehorn Rolf Bender,Q59533437,German jurist and judge (1923-2007),male,Bender,Rolf,1923-01-01 00:00:00+00:00,2007-01-01 00:00:00+00:00,http://www.wikidata.org/entity/Q59533437,, Rudolf Wassermann,Q1551290,German judge (1925-2008),male,Wassermann,Rudolf,1925-01-05 00:00:00+00:00,2008-06-13 00:00:00+00:00,http://www.wikidata.org/entity/Q1551290,,https://de.wikipedia.org/wiki/Rudolf_Wassermann Thilo Ramm,Q59533838,German legal scholar and author,male,Ramm,Thilo,1925-04-04 00:00:00+00:00,2018-06-17 00:00:00+00:00,http://www.wikidata.org/entity/Q59533838,,https://de.wikipedia.org/wiki/Thilo_Ramm +Heinrich Popitz,Q1598508,German university teacher (1925-2002),male,Popitz,Heinrich,1925-05-14 00:00:00+00:00,2002-04-01 00:00:00+00:00,http://www.wikidata.org/entity/Q1598508,https://en.wikipedia.org/wiki/Heinrich_Popitz,https://de.wikipedia.org/wiki/Heinrich_Popitz +Peter Noll,Q2077311,Swiss author (1926-1982),male,Noll,Peter,1926-05-16 00:00:00+00:00,1982-10-09 00:00:00+00:00,http://www.wikidata.org/entity/Q2077311,,https://de.wikipedia.org/wiki/Peter_Noll Niklas Luhmann,Q57238,"German sociologist, administration expert, and social systems theorist (1927-1998)",male,Luhmann,Niklas,1927-12-08 00:00:00+00:00,1998-11-06 00:00:00+00:00,http://www.wikidata.org/entity/Q57238,https://en.wikipedia.org/wiki/Niklas_Luhmann,https://de.wikipedia.org/wiki/Niklas_Luhmann +Rüdiger Schott,Q1442571,German ethnologist (1927-2012),male,Schott,Rüdiger,1927-12-10 00:00:00+00:00,2012-12-07 00:00:00+00:00,http://www.wikidata.org/entity/Q1442571,,https://de.wikipedia.org/wiki/R%C3%BCdiger_Schott Rudolf Wiethölter,Q1512482,German jurist,male,,Rudolf,1929-07-17 00:00:00+00:00,,http://www.wikidata.org/entity/Q1512482,,https://de.wikipedia.org/wiki/Rudolf_Wieth%C3%B6lter +Dietrich Rueschemeyer,Q93237353,American sociologist,male,,Dietrich,1930-08-28 00:00:00+00:00,,http://www.wikidata.org/entity/Q93237353,, +Paul Trappe,Q1785021,German sociologist (1931–2005),male,Trappe,Paul,1931-12-12 00:00:00+00:00,2005-03-22 00:00:00+00:00,http://www.wikidata.org/entity/Q1785021,,https://de.wikipedia.org/wiki/Paul_Trappe Günter Dux,Q1560417,German sociologist,male,Dux,Günter,1933-06-23 00:00:00+00:00,,http://www.wikidata.org/entity/Q1560417,,https://de.wikipedia.org/wiki/G%C3%BCnter_Dux Jutta Limbach,Q72551,German judge and politician (SPD) (1934-2016),female,Limbach,Jutta,1934-03-27 00:00:00+00:00,2016-09-10 00:00:00+00:00,http://www.wikidata.org/entity/Q72551,https://en.wikipedia.org/wiki/Jutta_Limbach,https://de.wikipedia.org/wiki/Jutta_Limbach Thomas Raiser,Q27909309,,male,,Thomas,1935-02-20 00:00:00+00:00,,http://www.wikidata.org/entity/Q27909309,,https://de.wikipedia.org/wiki/Thomas_Raiser @@ -27,6 +36,8 @@ Wolfgang Kaupen,Q93221485,,male,,Wolfgang,1936-01-01 00:00:00+00:00,1981-01-01 0 Volkmar Gessner,Q15435946,University professor,male,Gessner,Volkmar,1937-10-09 00:00:00+00:00,2014-11-08 00:00:00+00:00,http://www.wikidata.org/entity/Q15435946,https://en.wikipedia.org/wiki/Volkmar_Gessner,https://de.wikipedia.org/wiki/Volkmar_Gessner Klaus F. Röhl,Q27148390,,male,Röhl,Klaus,1938-05-22 00:00:00+00:00,,http://www.wikidata.org/entity/Q27148390,,https://de.wikipedia.org/wiki/Klaus_F._R%C3%B6hl Erhard Blankenburg,Q51595283,German sociologist of law (1938-2018),male,Blankenburg,Erhard,1938-10-30 00:00:00+00:00,2018-03-28 00:00:00+00:00,http://www.wikidata.org/entity/Q51595283,https://en.wikipedia.org/wiki/Erhard_Blankenburg,https://de.wikipedia.org/wiki/Erhard_Blankenburg +Frank Rotter,Q94923308,,male,,Frank,1939-01-01 00:00:00+00:00,2015-01-01 00:00:00+00:00,http://www.wikidata.org/entity/Q94923308,, +Winfried Hassemer,Q105358,German judge,male,Hassemer,Winfried,1940-02-17 00:00:00+00:00,2014-01-09 00:00:00+00:00,http://www.wikidata.org/entity/Q105358,https://en.wikipedia.org/wiki/Winfried_Hassemer,https://de.wikipedia.org/wiki/Winfried_Hassemer Manfred Weiss,Q1588285,German jurist,male,Weiss,Manfred,1940-06-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q1588285,,https://de.wikipedia.org/wiki/Manfred_Weiss_(Jurist) Rüdiger Voigt,Q1682026,German author,male,Voigt,Rüdiger,1941-04-07 00:00:00+00:00,,http://www.wikidata.org/entity/Q1682026,,https://de.wikipedia.org/wiki/R%C3%BCdiger_Voigt Roland Girtler,Q112873,Austrian historian and sociologist,male,Girtler,Roland,1941-05-31 00:00:00+00:00,,http://www.wikidata.org/entity/Q112873,,https://de.wikipedia.org/wiki/Roland_Girtler @@ -37,18 +48,22 @@ Hubert Rottleuthner,Q55622018,,male,,Hubert,1944-01-01 00:00:00+00:00,,http://ww Dieter Martiny,Q1222459,German jurist,male,Martiny,Dieter,1944-03-21 00:00:00+00:00,,http://www.wikidata.org/entity/Q1222459,,https://de.wikipedia.org/wiki/Dieter_Martiny Gunther Teubner,Q98304,German academic,male,Teubner,Gunther,1944-04-30 00:00:00+00:00,,http://www.wikidata.org/entity/Q98304,https://en.wikipedia.org/wiki/Gunther_Teubner,https://de.wikipedia.org/wiki/Gunther_Teubner Konstanze Plett,Q95192683,,female,,,1947-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q95192683,,https://de.wikipedia.org/wiki/Konstanze_Plett +Hagen Hof,Q113789632,,male,,,1947-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q113789632,, +Ulrike Schultz,Q113807259,,female,Schultz,,1947-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q113807259,, Armin Höland,Q15435996,German university professor,male,,Armin,1948-11-04 00:00:00+00:00,,http://www.wikidata.org/entity/Q15435996,,https://de.wikipedia.org/wiki/Armin_H%C3%B6land +Josef Falke,Q106133888,,male,,Josef,1949-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q106133888,,https://de.wikipedia.org/wiki/Josef_Falke Susanne Karstedt,Q2369299,criminologist,female,,Susanne,1949-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q2369299,https://en.wikipedia.org/wiki/Susanne_Karstedt,https://de.wikipedia.org/wiki/Susanne_Karstedt Leo Kißler,Q63203841,,male,,Leo,1949-01-08 00:00:00+00:00,,http://www.wikidata.org/entity/Q63203841,,https://de.wikipedia.org/wiki/Leo_Ki%C3%9Fler Fritz Jost,Q105946060,,male,,Fritz,1949-08-07 00:00:00+00:00,,http://www.wikidata.org/entity/Q105946060,,https://de.wikipedia.org/wiki/Fritz_Jost_(Rechtswissenschaftler) -Ralf Rogowski,Q20128038,Law professor (born 1953),male,Rogowski,Ralf,1953-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q20128038,https://en.wikipedia.org/wiki/Ralf_Rogowski, Doris Lucke,Q1245242,German university teacher,female,,Doris,1953-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q1245242,,https://de.wikipedia.org/wiki/Doris_Lucke +Ralf Rogowski,Q20128038,Law professor (born 1953),male,Rogowski,Ralf,1953-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q20128038,https://en.wikipedia.org/wiki/Ralf_Rogowski, Wolfgang Ludwig-Mayerhofer,Q2590472,German sociologist,male,,Wolfgang,1954-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q2590472,,https://de.wikipedia.org/wiki/Wolfgang_Ludwig-Mayerhofer Kai Bussmann,Q1552696,German jurist,male,Bussmann,Kai,1955-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q1552696,,https://de.wikipedia.org/wiki/Kai_Bussmann Dorothea Jansen,Q21258453,,female,Jansen,Dorothea,1956-08-21 00:00:00+00:00,2017-05-12 00:00:00+00:00,http://www.wikidata.org/entity/Q21258453,,https://de.wikipedia.org/wiki/Dorothea_Jansen Alfons Bora,Q2644328,German sociologist,male,,Alfons,1957-05-03 00:00:00+00:00,,http://www.wikidata.org/entity/Q2644328,,https://de.wikipedia.org/wiki/Alfons_Bora Ute Sacksofsky,Q48562036,German legal scholar,female,,Ute,1960-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q48562036,,https://de.wikipedia.org/wiki/Ute_Sacksofsky -Stefan Machura,Q95245830,,male,,Stefan,1962-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q95245830,, Ralf Poscher,Q2129347,German legal historian,male,,Ralf,1962-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q2129347,,https://de.wikipedia.org/wiki/Ralf_Poscher +Stefan Machura,Q95245830,,male,,Stefan,1962-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q95245830,, Susanne Baer,Q101872,German judge,female,Baer,Susanne,1964-02-16 00:00:00+00:00,,http://www.wikidata.org/entity/Q101872,https://en.wikipedia.org/wiki/Susanne_Baer,https://de.wikipedia.org/wiki/Susanne_Baer Gralf-Peter Calliess,Q1542033,German jurist,male,Calliess,Gralf-Peter,1967-01-01 00:00:00+00:00,,http://www.wikidata.org/entity/Q1542033,,https://de.wikipedia.org/wiki/Gralf-Peter_Calliess +Raymund Werle,Q113397702,,male,,,,,http://www.wikidata.org/entity/Q113397702,, diff --git a/wikidata/scholars-de.ipynb b/wikidata/scholars-de.ipynb index 3c519dec12af09f5612d622caf8f8a37d4199791..80ffb91d7533d69258254af31d50ce76bc743667 100644 --- a/wikidata/scholars-de.ipynb +++ b/wikidata/scholars-de.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 2, "outputs": [ { "name": "stdout", @@ -24,10 +24,10 @@ }, { "data": { - "text/plain": " fullName qid \\\n0 Karl Renner Q11726 \n1 Hugo Sinzheimer Q86043 \n2 Arthur Nussbaum Q103088 \n3 Ludwig Bendix Q15449424 \n4 Hans Kelsen Q84165 \n5 Theodor Geiger Q96410 \n6 Ernst Fraenkel Q86812 \n7 Franz Leopold Neumann Q63195 \n8 Otto Kahn-Freund Q121832 \n9 Ernst Eduard Hirsch Q107033 \n10 Otto Kirchheimer Q214397 \n11 Helmut Schelsky Q104272 \n12 Hans Ryffel Q21035905 \n13 Theo Rasehorn Q1304659 \n14 Rolf Bender Q59533437 \n15 Rudolf Wassermann Q1551290 \n16 Thilo Ramm Q59533838 \n17 Niklas Luhmann Q57238 \n18 Rudolf Wiethölter Q1512482 \n19 Günter Dux Q1560417 \n20 Jutta Limbach Q72551 \n21 Thomas Raiser Q27909309 \n22 Manfred Rehbinder Q1889820 \n23 Rüdiger Lautmann Q91074 \n24 Wolfgang Kaupen Q93221485 \n25 Volkmar Gessner Q15435946 \n26 Klaus F. Röhl Q27148390 \n27 Erhard Blankenburg Q51595283 \n28 Manfred Weiss Q1588285 \n29 Rüdiger Voigt Q1682026 \n30 Roland Girtler Q112873 \n31 Hubert Treiber Q1633462 \n32 Brun-Otto Bryde Q107784 \n33 Klaus A. Ziegert Q112513122 \n34 Hubert Rottleuthner Q55622018 \n35 Dieter Martiny Q1222459 \n36 Gunther Teubner Q98304 \n37 Konstanze Plett Q95192683 \n38 Armin Höland Q15435996 \n39 Susanne Karstedt Q2369299 \n40 Leo Kißler Q63203841 \n41 Fritz Jost Q105946060 \n42 Ralf Rogowski Q20128038 \n43 Doris Lucke Q1245242 \n44 Wolfgang Ludwig-Mayerhofer Q2590472 \n45 Kai Bussmann Q1552696 \n46 Dorothea Jansen Q21258453 \n47 Alfons Bora Q2644328 \n48 Ute Sacksofsky Q48562036 \n49 Stefan Machura Q95245830 \n50 Ralf Poscher Q2129347 \n51 Susanne Baer Q101872 \n52 Gralf-Peter Calliess Q1542033 \n\n itemdesc sexOrGender \\\n0 first President of Austria (1870–1950) male \n1 German politician (1875-1945) male \n2 German American jurist male \n3 German economist, civil law notary and lawyer ... male \n4 Austrian lawyer male \n5 German sociologist (1891-1952) male \n6 political scientist (1898-1975) male \n7 German political activist male \n8 German-British jurist male \n9 German judge (1902-1985) male \n10 German-American legal scholar male \n11 German sociologist (1912-1984) male \n12 (1913-1989) male \n13 German judge and author male \n14 German jurist and judge (1923-2007) male \n15 German judge (1925-2008) male \n16 German legal scholar and author male \n17 German sociologist, administration expert, and... male \n18 German jurist male \n19 German sociologist male \n20 German judge and politician (SPD) (1934-2016) female \n21 None male \n22 German jurist male \n23 German sociologist and LGBT researcher male \n24 None male \n25 University professor male \n26 None male \n27 German sociologist of law (1938-2018) male \n28 German jurist male \n29 German author male \n30 Austrian historian and sociologist male \n31 German university teacher male \n32 German judge male \n33 German sociologist of law male \n34 None male \n35 German jurist male \n36 German academic male \n37 None female \n38 German university professor male \n39 criminologist female \n40 None male \n41 None male \n42 Law professor (born 1953) male \n43 German university teacher female \n44 German sociologist male \n45 German jurist male \n46 None female \n47 German sociologist male \n48 German legal scholar female \n49 None male \n50 German legal historian male \n51 German judge female \n52 German jurist male \n\n familyName givenName dateOfBirth \\\n0 Renner Karl 1870-12-14 00:00:00+00:00 \n1 Sinzheimer Hugo D. 1875-01-01 00:00:00+00:00 \n2 Nussbaum Arthur 1877-01-01 00:00:00+00:00 \n3 Bendix Ludwig 1877-06-28 00:00:00+00:00 \n4 Kelsen Hans 1881-10-11 00:00:00+00:00 \n5 Geiger Theodor 1891-11-09 00:00:00+00:00 \n6 Fraenkel Ernst 1898-12-26 00:00:00+00:00 \n7 Neumann Leopold Franz 1900-05-23 00:00:00+00:00 \n8 Kahn Freund Otto 1900-11-17 00:00:00+00:00 \n9 Hirsch Ernst 1902-01-20 00:00:00+00:00 \n10 Kirchheimer Otto 1905-11-11 00:00:00+00:00 \n11 Helmut 1912-10-14 00:00:00+00:00 \n12 Ryffel Hans 1913-06-27 00:00:00+00:00 \n13 Theo 1918-10-26 00:00:00+00:00 \n14 Bender Rolf 1923-01-01 00:00:00+00:00 \n15 Wassermann Rudolf 1925-01-05 00:00:00+00:00 \n16 Ramm Thilo 1925-04-04 00:00:00+00:00 \n17 Luhmann Niklas 1927-12-08 00:00:00+00:00 \n18 Rudolf 1929-07-17 00:00:00+00:00 \n19 Dux Günter 1933-06-23 00:00:00+00:00 \n20 Limbach Jutta 1934-03-27 00:00:00+00:00 \n21 Thomas 1935-02-20 00:00:00+00:00 \n22 Manfred 1935-03-22 00:00:00+00:00 \n23 Rüdiger 1935-12-22 00:00:00+00:00 \n24 Wolfgang 1936-01-01 00:00:00+00:00 \n25 Gessner Volkmar 1937-10-09 00:00:00+00:00 \n26 Röhl Klaus 1938-05-22 00:00:00+00:00 \n27 Blankenburg Erhard 1938-10-30 00:00:00+00:00 \n28 Weiss Manfred 1940-06-01 00:00:00+00:00 \n29 Voigt Rüdiger 1941-04-07 00:00:00+00:00 \n30 Girtler Roland 1941-05-31 00:00:00+00:00 \n31 Hubert 1942-07-30 00:00:00+00:00 \n32 1943-01-12 00:00:00+00:00 \n33 Ziegert Klaus 1944-01-01 00:00:00+00:00 \n34 Hubert 1944-01-01 00:00:00+00:00 \n35 Martiny Dieter 1944-03-21 00:00:00+00:00 \n36 Teubner Gunther 1944-04-30 00:00:00+00:00 \n37 1947-01-01 00:00:00+00:00 \n38 Armin 1948-11-04 00:00:00+00:00 \n39 Susanne 1949-01-01 00:00:00+00:00 \n40 Leo 1949-01-08 00:00:00+00:00 \n41 Fritz 1949-08-07 00:00:00+00:00 \n42 Rogowski Ralf 1953-01-01 00:00:00+00:00 \n43 Doris 1953-01-01 00:00:00+00:00 \n44 Wolfgang 1954-01-01 00:00:00+00:00 \n45 Bussmann Kai 1955-01-01 00:00:00+00:00 \n46 Jansen Dorothea 1956-08-21 00:00:00+00:00 \n47 Alfons 1957-05-03 00:00:00+00:00 \n48 Ute 1960-01-01 00:00:00+00:00 \n49 Stefan 1962-01-01 00:00:00+00:00 \n50 Ralf 1962-01-01 00:00:00+00:00 \n51 Baer Susanne 1964-02-16 00:00:00+00:00 \n52 Calliess Gralf-Peter 1967-01-01 00:00:00+00:00 \n\n dateOfDeath wikidata_url \\\n0 1950-12-31 00:00:00+00:00 http://www.wikidata.org/entity/Q11726 \n1 1945-09-16 00:00:00+00:00 http://www.wikidata.org/entity/Q86043 \n2 1964-01-01 00:00:00+00:00 http://www.wikidata.org/entity/Q103088 \n3 1954-01-03 00:00:00+00:00 http://www.wikidata.org/entity/Q15449424 \n4 1973-04-19 00:00:00+00:00 http://www.wikidata.org/entity/Q84165 \n5 1952-06-16 00:00:00+00:00 http://www.wikidata.org/entity/Q96410 \n6 1975-03-28 00:00:00+00:00 http://www.wikidata.org/entity/Q86812 \n7 1954-09-02 00:00:00+00:00 http://www.wikidata.org/entity/Q63195 \n8 1979-06-16 00:00:00+00:00 http://www.wikidata.org/entity/Q121832 \n9 1985-03-29 00:00:00+00:00 http://www.wikidata.org/entity/Q107033 \n10 1965-11-22 00:00:00+00:00 http://www.wikidata.org/entity/Q214397 \n11 1984-02-24 00:00:00+00:00 http://www.wikidata.org/entity/Q104272 \n12 1989-09-30 00:00:00+00:00 http://www.wikidata.org/entity/Q21035905 \n13 2016-01-16 00:00:00+00:00 http://www.wikidata.org/entity/Q1304659 \n14 2007-01-01 00:00:00+00:00 http://www.wikidata.org/entity/Q59533437 \n15 2008-06-13 00:00:00+00:00 http://www.wikidata.org/entity/Q1551290 \n16 2018-06-17 00:00:00+00:00 http://www.wikidata.org/entity/Q59533838 \n17 1998-11-06 00:00:00+00:00 http://www.wikidata.org/entity/Q57238 \n18 NaT http://www.wikidata.org/entity/Q1512482 \n19 NaT http://www.wikidata.org/entity/Q1560417 \n20 2016-09-10 00:00:00+00:00 http://www.wikidata.org/entity/Q72551 \n21 NaT http://www.wikidata.org/entity/Q27909309 \n22 NaT http://www.wikidata.org/entity/Q1889820 \n23 NaT http://www.wikidata.org/entity/Q91074 \n24 1981-01-01 00:00:00+00:00 http://www.wikidata.org/entity/Q93221485 \n25 2014-11-08 00:00:00+00:00 http://www.wikidata.org/entity/Q15435946 \n26 NaT http://www.wikidata.org/entity/Q27148390 \n27 2018-03-28 00:00:00+00:00 http://www.wikidata.org/entity/Q51595283 \n28 NaT http://www.wikidata.org/entity/Q1588285 \n29 NaT http://www.wikidata.org/entity/Q1682026 \n30 NaT http://www.wikidata.org/entity/Q112873 \n31 NaT http://www.wikidata.org/entity/Q1633462 \n32 NaT http://www.wikidata.org/entity/Q107784 \n33 NaT http://www.wikidata.org/entity/Q112513122 \n34 NaT http://www.wikidata.org/entity/Q55622018 \n35 NaT http://www.wikidata.org/entity/Q1222459 \n36 NaT http://www.wikidata.org/entity/Q98304 \n37 NaT http://www.wikidata.org/entity/Q95192683 \n38 NaT http://www.wikidata.org/entity/Q15435996 \n39 NaT http://www.wikidata.org/entity/Q2369299 \n40 NaT http://www.wikidata.org/entity/Q63203841 \n41 NaT http://www.wikidata.org/entity/Q105946060 \n42 NaT http://www.wikidata.org/entity/Q20128038 \n43 NaT http://www.wikidata.org/entity/Q1245242 \n44 NaT http://www.wikidata.org/entity/Q2590472 \n45 NaT http://www.wikidata.org/entity/Q1552696 \n46 2017-05-12 00:00:00+00:00 http://www.wikidata.org/entity/Q21258453 \n47 NaT http://www.wikidata.org/entity/Q2644328 \n48 NaT http://www.wikidata.org/entity/Q48562036 \n49 NaT http://www.wikidata.org/entity/Q95245830 \n50 NaT http://www.wikidata.org/entity/Q2129347 \n51 NaT http://www.wikidata.org/entity/Q101872 \n52 NaT http://www.wikidata.org/entity/Q1542033 \n\n wikipedia_en \\\n0 https://en.wikipedia.org/wiki/Karl_Renner \n1 https://en.wikipedia.org/wiki/Hugo_Sinzheimer \n2 https://en.wikipedia.org/wiki/Arthur_Nussbaum \n3 None \n4 https://en.wikipedia.org/wiki/Hans_Kelsen \n5 https://en.wikipedia.org/wiki/Theodor_Geiger \n6 https://en.wikipedia.org/wiki/Ernst_Fraenkel_(... \n7 https://en.wikipedia.org/wiki/Franz_Neumann_(p... \n8 https://en.wikipedia.org/wiki/Otto_Kahn-Freund \n9 None \n10 https://en.wikipedia.org/wiki/Otto_Kirchheimer \n11 https://en.wikipedia.org/wiki/Helmut_Schelsky \n12 None \n13 None \n14 None \n15 None \n16 None \n17 https://en.wikipedia.org/wiki/Niklas_Luhmann \n18 None \n19 None \n20 https://en.wikipedia.org/wiki/Jutta_Limbach \n21 None \n22 None \n23 https://en.wikipedia.org/wiki/R%C3%BCdiger_Lau... \n24 None \n25 https://en.wikipedia.org/wiki/Volkmar_Gessner \n26 None \n27 https://en.wikipedia.org/wiki/Erhard_Blankenburg \n28 None \n29 None \n30 None \n31 None \n32 https://en.wikipedia.org/wiki/Brun-Otto_Bryde \n33 None \n34 None \n35 None \n36 https://en.wikipedia.org/wiki/Gunther_Teubner \n37 None \n38 None \n39 https://en.wikipedia.org/wiki/Susanne_Karstedt \n40 None \n41 None \n42 https://en.wikipedia.org/wiki/Ralf_Rogowski \n43 None \n44 None \n45 None \n46 None \n47 None \n48 None \n49 None \n50 None \n51 https://en.wikipedia.org/wiki/Susanne_Baer \n52 None \n\n wikipedia_de \n0 https://de.wikipedia.org/wiki/Karl_Renner \n1 https://de.wikipedia.org/wiki/Hugo_Sinzheimer \n2 https://de.wikipedia.org/wiki/Arthur_Nussbaum \n3 https://de.wikipedia.org/wiki/Ludwig_Bendix \n4 https://de.wikipedia.org/wiki/Hans_Kelsen \n5 https://de.wikipedia.org/wiki/Theodor_Geiger \n6 https://de.wikipedia.org/wiki/Ernst_Fraenkel_(... \n7 https://de.wikipedia.org/wiki/Franz_Neumann_(P... \n8 https://de.wikipedia.org/wiki/Otto_Kahn-Freund \n9 https://de.wikipedia.org/wiki/Ernst_Eduard_Hirsch \n10 https://de.wikipedia.org/wiki/Otto_Kirchheimer \n11 https://de.wikipedia.org/wiki/Helmut_Schelsky \n12 https://de.wikipedia.org/wiki/Hans_Ryffel_(Rec... \n13 https://de.wikipedia.org/wiki/Theo_Rasehorn \n14 None \n15 https://de.wikipedia.org/wiki/Rudolf_Wassermann \n16 https://de.wikipedia.org/wiki/Thilo_Ramm \n17 https://de.wikipedia.org/wiki/Niklas_Luhmann \n18 https://de.wikipedia.org/wiki/Rudolf_Wieth%C3%... \n19 https://de.wikipedia.org/wiki/G%C3%BCnter_Dux \n20 https://de.wikipedia.org/wiki/Jutta_Limbach \n21 https://de.wikipedia.org/wiki/Thomas_Raiser \n22 https://de.wikipedia.org/wiki/Manfred_Rehbinder \n23 https://de.wikipedia.org/wiki/R%C3%BCdiger_Lau... \n24 None \n25 https://de.wikipedia.org/wiki/Volkmar_Gessner \n26 https://de.wikipedia.org/wiki/Klaus_F._R%C3%B6hl \n27 https://de.wikipedia.org/wiki/Erhard_Blankenburg \n28 https://de.wikipedia.org/wiki/Manfred_Weiss_(J... \n29 https://de.wikipedia.org/wiki/R%C3%BCdiger_Voigt \n30 https://de.wikipedia.org/wiki/Roland_Girtler \n31 https://de.wikipedia.org/wiki/Hubert_Treiber \n32 https://de.wikipedia.org/wiki/Brun-Otto_Bryde \n33 None \n34 https://de.wikipedia.org/wiki/Hubert_Rottleuthner \n35 https://de.wikipedia.org/wiki/Dieter_Martiny \n36 https://de.wikipedia.org/wiki/Gunther_Teubner \n37 https://de.wikipedia.org/wiki/Konstanze_Plett \n38 https://de.wikipedia.org/wiki/Armin_H%C3%B6land \n39 https://de.wikipedia.org/wiki/Susanne_Karstedt \n40 https://de.wikipedia.org/wiki/Leo_Ki%C3%9Fler \n41 https://de.wikipedia.org/wiki/Fritz_Jost_(Rech... \n42 None \n43 https://de.wikipedia.org/wiki/Doris_Lucke \n44 https://de.wikipedia.org/wiki/Wolfgang_Ludwig-... \n45 https://de.wikipedia.org/wiki/Kai_Bussmann \n46 https://de.wikipedia.org/wiki/Dorothea_Jansen \n47 https://de.wikipedia.org/wiki/Alfons_Bora \n48 https://de.wikipedia.org/wiki/Ute_Sacksofsky \n49 None \n50 https://de.wikipedia.org/wiki/Ralf_Poscher \n51 https://de.wikipedia.org/wiki/Susanne_Baer \n52 https://de.wikipedia.org/wiki/Gralf-Peter_Call... ", - "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>fullName</th>\n <th>qid</th>\n <th>itemdesc</th>\n <th>sexOrGender</th>\n <th>familyName</th>\n <th>givenName</th>\n <th>dateOfBirth</th>\n <th>dateOfDeath</th>\n <th>wikidata_url</th>\n <th>wikipedia_en</th>\n <th>wikipedia_de</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>Karl Renner</td>\n <td>Q11726</td>\n <td>first President of Austria (1870–1950)</td>\n <td>male</td>\n <td>Renner</td>\n <td>Karl</td>\n <td>1870-12-14 00:00:00+00:00</td>\n <td>1950-12-31 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q11726</td>\n <td>https://en.wikipedia.org/wiki/Karl_Renner</td>\n <td>https://de.wikipedia.org/wiki/Karl_Renner</td>\n </tr>\n <tr>\n <th>1</th>\n <td>Hugo Sinzheimer</td>\n <td>Q86043</td>\n <td>German politician (1875-1945)</td>\n <td>male</td>\n <td>Sinzheimer</td>\n <td>Hugo D.</td>\n <td>1875-01-01 00:00:00+00:00</td>\n <td>1945-09-16 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q86043</td>\n <td>https://en.wikipedia.org/wiki/Hugo_Sinzheimer</td>\n <td>https://de.wikipedia.org/wiki/Hugo_Sinzheimer</td>\n </tr>\n <tr>\n <th>2</th>\n <td>Arthur Nussbaum</td>\n <td>Q103088</td>\n <td>German American jurist</td>\n <td>male</td>\n <td>Nussbaum</td>\n <td>Arthur</td>\n <td>1877-01-01 00:00:00+00:00</td>\n <td>1964-01-01 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q103088</td>\n <td>https://en.wikipedia.org/wiki/Arthur_Nussbaum</td>\n <td>https://de.wikipedia.org/wiki/Arthur_Nussbaum</td>\n </tr>\n <tr>\n <th>3</th>\n <td>Ludwig Bendix</td>\n <td>Q15449424</td>\n <td>German economist, civil law notary and lawyer ...</td>\n <td>male</td>\n <td>Bendix</td>\n <td>Ludwig</td>\n <td>1877-06-28 00:00:00+00:00</td>\n <td>1954-01-03 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q15449424</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Ludwig_Bendix</td>\n </tr>\n <tr>\n <th>4</th>\n <td>Hans Kelsen</td>\n <td>Q84165</td>\n <td>Austrian lawyer</td>\n <td>male</td>\n <td>Kelsen</td>\n <td>Hans</td>\n <td>1881-10-11 00:00:00+00:00</td>\n <td>1973-04-19 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q84165</td>\n <td>https://en.wikipedia.org/wiki/Hans_Kelsen</td>\n <td>https://de.wikipedia.org/wiki/Hans_Kelsen</td>\n </tr>\n <tr>\n <th>5</th>\n <td>Theodor Geiger</td>\n <td>Q96410</td>\n <td>German sociologist (1891-1952)</td>\n <td>male</td>\n <td>Geiger</td>\n <td>Theodor</td>\n <td>1891-11-09 00:00:00+00:00</td>\n <td>1952-06-16 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q96410</td>\n <td>https://en.wikipedia.org/wiki/Theodor_Geiger</td>\n <td>https://de.wikipedia.org/wiki/Theodor_Geiger</td>\n </tr>\n <tr>\n <th>6</th>\n <td>Ernst Fraenkel</td>\n <td>Q86812</td>\n <td>political scientist (1898-1975)</td>\n <td>male</td>\n <td>Fraenkel</td>\n <td>Ernst</td>\n <td>1898-12-26 00:00:00+00:00</td>\n <td>1975-03-28 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q86812</td>\n <td>https://en.wikipedia.org/wiki/Ernst_Fraenkel_(...</td>\n <td>https://de.wikipedia.org/wiki/Ernst_Fraenkel_(...</td>\n </tr>\n <tr>\n <th>7</th>\n <td>Franz Leopold Neumann</td>\n <td>Q63195</td>\n <td>German political activist</td>\n <td>male</td>\n <td>Neumann</td>\n <td>Leopold Franz</td>\n <td>1900-05-23 00:00:00+00:00</td>\n <td>1954-09-02 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q63195</td>\n <td>https://en.wikipedia.org/wiki/Franz_Neumann_(p...</td>\n <td>https://de.wikipedia.org/wiki/Franz_Neumann_(P...</td>\n </tr>\n <tr>\n <th>8</th>\n <td>Otto Kahn-Freund</td>\n <td>Q121832</td>\n <td>German-British jurist</td>\n <td>male</td>\n <td>Kahn Freund</td>\n <td>Otto</td>\n <td>1900-11-17 00:00:00+00:00</td>\n <td>1979-06-16 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q121832</td>\n <td>https://en.wikipedia.org/wiki/Otto_Kahn-Freund</td>\n <td>https://de.wikipedia.org/wiki/Otto_Kahn-Freund</td>\n </tr>\n <tr>\n <th>9</th>\n <td>Ernst Eduard Hirsch</td>\n <td>Q107033</td>\n <td>German judge (1902-1985)</td>\n <td>male</td>\n <td>Hirsch</td>\n <td>Ernst</td>\n <td>1902-01-20 00:00:00+00:00</td>\n <td>1985-03-29 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q107033</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Ernst_Eduard_Hirsch</td>\n </tr>\n <tr>\n <th>10</th>\n <td>Otto Kirchheimer</td>\n <td>Q214397</td>\n <td>German-American legal scholar</td>\n <td>male</td>\n <td>Kirchheimer</td>\n <td>Otto</td>\n <td>1905-11-11 00:00:00+00:00</td>\n <td>1965-11-22 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q214397</td>\n <td>https://en.wikipedia.org/wiki/Otto_Kirchheimer</td>\n <td>https://de.wikipedia.org/wiki/Otto_Kirchheimer</td>\n </tr>\n <tr>\n <th>11</th>\n <td>Helmut Schelsky</td>\n <td>Q104272</td>\n <td>German sociologist (1912-1984)</td>\n <td>male</td>\n <td></td>\n <td>Helmut</td>\n <td>1912-10-14 00:00:00+00:00</td>\n <td>1984-02-24 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q104272</td>\n <td>https://en.wikipedia.org/wiki/Helmut_Schelsky</td>\n <td>https://de.wikipedia.org/wiki/Helmut_Schelsky</td>\n </tr>\n <tr>\n <th>12</th>\n <td>Hans Ryffel</td>\n <td>Q21035905</td>\n <td>(1913-1989)</td>\n <td>male</td>\n <td>Ryffel</td>\n <td>Hans</td>\n <td>1913-06-27 00:00:00+00:00</td>\n <td>1989-09-30 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q21035905</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Hans_Ryffel_(Rec...</td>\n </tr>\n <tr>\n <th>13</th>\n <td>Theo Rasehorn</td>\n <td>Q1304659</td>\n <td>German judge and author</td>\n <td>male</td>\n <td></td>\n <td>Theo</td>\n <td>1918-10-26 00:00:00+00:00</td>\n <td>2016-01-16 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q1304659</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Theo_Rasehorn</td>\n </tr>\n <tr>\n <th>14</th>\n <td>Rolf Bender</td>\n <td>Q59533437</td>\n <td>German jurist and judge (1923-2007)</td>\n <td>male</td>\n <td>Bender</td>\n <td>Rolf</td>\n <td>1923-01-01 00:00:00+00:00</td>\n <td>2007-01-01 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q59533437</td>\n <td>None</td>\n <td>None</td>\n </tr>\n <tr>\n <th>15</th>\n <td>Rudolf Wassermann</td>\n <td>Q1551290</td>\n <td>German judge (1925-2008)</td>\n <td>male</td>\n <td>Wassermann</td>\n <td>Rudolf</td>\n <td>1925-01-05 00:00:00+00:00</td>\n <td>2008-06-13 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q1551290</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Rudolf_Wassermann</td>\n </tr>\n <tr>\n <th>16</th>\n <td>Thilo Ramm</td>\n <td>Q59533838</td>\n <td>German legal scholar and author</td>\n <td>male</td>\n <td>Ramm</td>\n <td>Thilo</td>\n <td>1925-04-04 00:00:00+00:00</td>\n <td>2018-06-17 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q59533838</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Thilo_Ramm</td>\n </tr>\n <tr>\n <th>17</th>\n <td>Niklas Luhmann</td>\n <td>Q57238</td>\n <td>German sociologist, administration expert, and...</td>\n <td>male</td>\n <td>Luhmann</td>\n <td>Niklas</td>\n <td>1927-12-08 00:00:00+00:00</td>\n <td>1998-11-06 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q57238</td>\n <td>https://en.wikipedia.org/wiki/Niklas_Luhmann</td>\n <td>https://de.wikipedia.org/wiki/Niklas_Luhmann</td>\n </tr>\n <tr>\n <th>18</th>\n <td>Rudolf Wiethölter</td>\n <td>Q1512482</td>\n <td>German jurist</td>\n <td>male</td>\n <td></td>\n <td>Rudolf</td>\n <td>1929-07-17 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q1512482</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Rudolf_Wieth%C3%...</td>\n </tr>\n <tr>\n <th>19</th>\n <td>Günter Dux</td>\n <td>Q1560417</td>\n <td>German sociologist</td>\n <td>male</td>\n <td>Dux</td>\n <td>Günter</td>\n <td>1933-06-23 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q1560417</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/G%C3%BCnter_Dux</td>\n </tr>\n <tr>\n <th>20</th>\n <td>Jutta Limbach</td>\n <td>Q72551</td>\n <td>German judge and politician (SPD) (1934-2016)</td>\n <td>female</td>\n <td>Limbach</td>\n <td>Jutta</td>\n <td>1934-03-27 00:00:00+00:00</td>\n <td>2016-09-10 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q72551</td>\n <td>https://en.wikipedia.org/wiki/Jutta_Limbach</td>\n <td>https://de.wikipedia.org/wiki/Jutta_Limbach</td>\n </tr>\n <tr>\n <th>21</th>\n <td>Thomas Raiser</td>\n <td>Q27909309</td>\n <td>None</td>\n <td>male</td>\n <td></td>\n <td>Thomas</td>\n <td>1935-02-20 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q27909309</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Thomas_Raiser</td>\n </tr>\n <tr>\n <th>22</th>\n <td>Manfred Rehbinder</td>\n <td>Q1889820</td>\n <td>German jurist</td>\n <td>male</td>\n <td></td>\n <td>Manfred</td>\n <td>1935-03-22 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q1889820</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Manfred_Rehbinder</td>\n </tr>\n <tr>\n <th>23</th>\n <td>Rüdiger Lautmann</td>\n <td>Q91074</td>\n <td>German sociologist and LGBT researcher</td>\n <td>male</td>\n <td></td>\n <td>Rüdiger</td>\n <td>1935-12-22 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q91074</td>\n <td>https://en.wikipedia.org/wiki/R%C3%BCdiger_Lau...</td>\n <td>https://de.wikipedia.org/wiki/R%C3%BCdiger_Lau...</td>\n </tr>\n <tr>\n <th>24</th>\n <td>Wolfgang Kaupen</td>\n <td>Q93221485</td>\n <td>None</td>\n <td>male</td>\n <td></td>\n <td>Wolfgang</td>\n <td>1936-01-01 00:00:00+00:00</td>\n <td>1981-01-01 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q93221485</td>\n <td>None</td>\n <td>None</td>\n </tr>\n <tr>\n <th>25</th>\n <td>Volkmar Gessner</td>\n <td>Q15435946</td>\n <td>University professor</td>\n <td>male</td>\n <td>Gessner</td>\n <td>Volkmar</td>\n <td>1937-10-09 00:00:00+00:00</td>\n <td>2014-11-08 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q15435946</td>\n <td>https://en.wikipedia.org/wiki/Volkmar_Gessner</td>\n <td>https://de.wikipedia.org/wiki/Volkmar_Gessner</td>\n </tr>\n <tr>\n <th>26</th>\n <td>Klaus F. Röhl</td>\n <td>Q27148390</td>\n <td>None</td>\n <td>male</td>\n <td>Röhl</td>\n <td>Klaus</td>\n <td>1938-05-22 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q27148390</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Klaus_F._R%C3%B6hl</td>\n </tr>\n <tr>\n <th>27</th>\n <td>Erhard Blankenburg</td>\n <td>Q51595283</td>\n <td>German sociologist of law (1938-2018)</td>\n <td>male</td>\n <td>Blankenburg</td>\n <td>Erhard</td>\n <td>1938-10-30 00:00:00+00:00</td>\n <td>2018-03-28 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q51595283</td>\n <td>https://en.wikipedia.org/wiki/Erhard_Blankenburg</td>\n <td>https://de.wikipedia.org/wiki/Erhard_Blankenburg</td>\n </tr>\n <tr>\n <th>28</th>\n <td>Manfred Weiss</td>\n <td>Q1588285</td>\n <td>German jurist</td>\n <td>male</td>\n <td>Weiss</td>\n <td>Manfred</td>\n <td>1940-06-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q1588285</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Manfred_Weiss_(J...</td>\n </tr>\n <tr>\n <th>29</th>\n <td>Rüdiger Voigt</td>\n <td>Q1682026</td>\n <td>German author</td>\n <td>male</td>\n <td>Voigt</td>\n <td>Rüdiger</td>\n <td>1941-04-07 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q1682026</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/R%C3%BCdiger_Voigt</td>\n </tr>\n <tr>\n <th>30</th>\n <td>Roland Girtler</td>\n <td>Q112873</td>\n <td>Austrian historian and sociologist</td>\n <td>male</td>\n <td>Girtler</td>\n <td>Roland</td>\n <td>1941-05-31 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q112873</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Roland_Girtler</td>\n </tr>\n <tr>\n <th>31</th>\n <td>Hubert Treiber</td>\n <td>Q1633462</td>\n <td>German university teacher</td>\n <td>male</td>\n <td></td>\n <td>Hubert</td>\n <td>1942-07-30 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q1633462</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Hubert_Treiber</td>\n </tr>\n <tr>\n <th>32</th>\n <td>Brun-Otto Bryde</td>\n <td>Q107784</td>\n <td>German judge</td>\n <td>male</td>\n <td></td>\n <td></td>\n <td>1943-01-12 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q107784</td>\n <td>https://en.wikipedia.org/wiki/Brun-Otto_Bryde</td>\n <td>https://de.wikipedia.org/wiki/Brun-Otto_Bryde</td>\n </tr>\n <tr>\n <th>33</th>\n <td>Klaus A. Ziegert</td>\n <td>Q112513122</td>\n <td>German sociologist of law</td>\n <td>male</td>\n <td>Ziegert</td>\n <td>Klaus</td>\n <td>1944-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q112513122</td>\n <td>None</td>\n <td>None</td>\n </tr>\n <tr>\n <th>34</th>\n <td>Hubert Rottleuthner</td>\n <td>Q55622018</td>\n <td>None</td>\n <td>male</td>\n <td></td>\n <td>Hubert</td>\n <td>1944-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q55622018</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Hubert_Rottleuthner</td>\n </tr>\n <tr>\n <th>35</th>\n <td>Dieter Martiny</td>\n <td>Q1222459</td>\n <td>German jurist</td>\n <td>male</td>\n <td>Martiny</td>\n <td>Dieter</td>\n <td>1944-03-21 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q1222459</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Dieter_Martiny</td>\n </tr>\n <tr>\n <th>36</th>\n <td>Gunther Teubner</td>\n <td>Q98304</td>\n <td>German academic</td>\n <td>male</td>\n <td>Teubner</td>\n <td>Gunther</td>\n <td>1944-04-30 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q98304</td>\n <td>https://en.wikipedia.org/wiki/Gunther_Teubner</td>\n <td>https://de.wikipedia.org/wiki/Gunther_Teubner</td>\n </tr>\n <tr>\n <th>37</th>\n <td>Konstanze Plett</td>\n <td>Q95192683</td>\n <td>None</td>\n <td>female</td>\n <td></td>\n <td></td>\n <td>1947-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q95192683</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Konstanze_Plett</td>\n </tr>\n <tr>\n <th>38</th>\n <td>Armin Höland</td>\n <td>Q15435996</td>\n <td>German university professor</td>\n <td>male</td>\n <td></td>\n <td>Armin</td>\n <td>1948-11-04 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q15435996</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Armin_H%C3%B6land</td>\n </tr>\n <tr>\n <th>39</th>\n <td>Susanne Karstedt</td>\n <td>Q2369299</td>\n <td>criminologist</td>\n <td>female</td>\n <td></td>\n <td>Susanne</td>\n <td>1949-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q2369299</td>\n <td>https://en.wikipedia.org/wiki/Susanne_Karstedt</td>\n <td>https://de.wikipedia.org/wiki/Susanne_Karstedt</td>\n </tr>\n <tr>\n <th>40</th>\n <td>Leo Kißler</td>\n <td>Q63203841</td>\n <td>None</td>\n <td>male</td>\n <td></td>\n <td>Leo</td>\n <td>1949-01-08 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q63203841</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Leo_Ki%C3%9Fler</td>\n </tr>\n <tr>\n <th>41</th>\n <td>Fritz Jost</td>\n <td>Q105946060</td>\n <td>None</td>\n <td>male</td>\n <td></td>\n <td>Fritz</td>\n <td>1949-08-07 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q105946060</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Fritz_Jost_(Rech...</td>\n </tr>\n <tr>\n <th>42</th>\n <td>Ralf Rogowski</td>\n <td>Q20128038</td>\n <td>Law professor (born 1953)</td>\n <td>male</td>\n <td>Rogowski</td>\n <td>Ralf</td>\n <td>1953-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q20128038</td>\n <td>https://en.wikipedia.org/wiki/Ralf_Rogowski</td>\n <td>None</td>\n </tr>\n <tr>\n <th>43</th>\n <td>Doris Lucke</td>\n <td>Q1245242</td>\n <td>German university teacher</td>\n <td>female</td>\n <td></td>\n <td>Doris</td>\n <td>1953-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q1245242</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Doris_Lucke</td>\n </tr>\n <tr>\n <th>44</th>\n <td>Wolfgang Ludwig-Mayerhofer</td>\n <td>Q2590472</td>\n <td>German sociologist</td>\n <td>male</td>\n <td></td>\n <td>Wolfgang</td>\n <td>1954-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q2590472</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Wolfgang_Ludwig-...</td>\n </tr>\n <tr>\n <th>45</th>\n <td>Kai Bussmann</td>\n <td>Q1552696</td>\n <td>German jurist</td>\n <td>male</td>\n <td>Bussmann</td>\n <td>Kai</td>\n <td>1955-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q1552696</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Kai_Bussmann</td>\n </tr>\n <tr>\n <th>46</th>\n <td>Dorothea Jansen</td>\n <td>Q21258453</td>\n <td>None</td>\n <td>female</td>\n <td>Jansen</td>\n <td>Dorothea</td>\n <td>1956-08-21 00:00:00+00:00</td>\n <td>2017-05-12 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q21258453</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Dorothea_Jansen</td>\n </tr>\n <tr>\n <th>47</th>\n <td>Alfons Bora</td>\n <td>Q2644328</td>\n <td>German sociologist</td>\n <td>male</td>\n <td></td>\n <td>Alfons</td>\n <td>1957-05-03 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q2644328</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Alfons_Bora</td>\n </tr>\n <tr>\n <th>48</th>\n <td>Ute Sacksofsky</td>\n <td>Q48562036</td>\n <td>German legal scholar</td>\n <td>female</td>\n <td></td>\n <td>Ute</td>\n <td>1960-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q48562036</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Ute_Sacksofsky</td>\n </tr>\n <tr>\n <th>49</th>\n <td>Stefan Machura</td>\n <td>Q95245830</td>\n <td>None</td>\n <td>male</td>\n <td></td>\n <td>Stefan</td>\n <td>1962-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q95245830</td>\n <td>None</td>\n <td>None</td>\n </tr>\n <tr>\n <th>50</th>\n <td>Ralf Poscher</td>\n <td>Q2129347</td>\n <td>German legal historian</td>\n <td>male</td>\n <td></td>\n <td>Ralf</td>\n <td>1962-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q2129347</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Ralf_Poscher</td>\n </tr>\n <tr>\n <th>51</th>\n <td>Susanne Baer</td>\n <td>Q101872</td>\n <td>German judge</td>\n <td>female</td>\n <td>Baer</td>\n <td>Susanne</td>\n <td>1964-02-16 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q101872</td>\n <td>https://en.wikipedia.org/wiki/Susanne_Baer</td>\n <td>https://de.wikipedia.org/wiki/Susanne_Baer</td>\n </tr>\n <tr>\n <th>52</th>\n <td>Gralf-Peter Calliess</td>\n <td>Q1542033</td>\n <td>German jurist</td>\n <td>male</td>\n <td>Calliess</td>\n <td>Gralf-Peter</td>\n <td>1967-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q1542033</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Gralf-Peter_Call...</td>\n </tr>\n </tbody>\n</table>\n</div>" + "text/plain": " fullName qid \\\n0 Karl Renner Q11726 \n1 Hugo Sinzheimer Q86043 \n2 Arthur Nussbaum Q103088 \n3 Ludwig Bendix Q15449424 \n4 Hans Kelsen Q84165 \n.. ... ... \n63 Ralf Poscher Q2129347 \n64 Stefan Machura Q95245830 \n65 Susanne Baer Q101872 \n66 Gralf-Peter Calliess Q1542033 \n67 Raymund Werle Q113397702 \n\n itemdesc sexOrGender familyName \\\n0 first President of Austria (1870–1950) male Renner \n1 German politician (1875-1945) male Sinzheimer \n2 German American jurist male Nussbaum \n3 German economist, civil law notary and lawyer ... male Bendix \n4 Austrian lawyer male Kelsen \n.. ... ... ... \n63 German legal historian male \n64 None male \n65 German judge female Baer \n66 German jurist male Calliess \n67 None male \n\n givenName dateOfBirth dateOfDeath \\\n0 Karl 1870-12-14 00:00:00+00:00 1950-12-31 00:00:00+00:00 \n1 D. Hugo 1875-01-01 00:00:00+00:00 1945-09-16 00:00:00+00:00 \n2 Arthur 1877-01-01 00:00:00+00:00 1964-01-01 00:00:00+00:00 \n3 Ludwig 1877-06-28 00:00:00+00:00 1954-01-03 00:00:00+00:00 \n4 Hans 1881-10-11 00:00:00+00:00 1973-04-19 00:00:00+00:00 \n.. ... ... ... \n63 Ralf 1962-01-01 00:00:00+00:00 NaT \n64 Stefan 1962-01-01 00:00:00+00:00 NaT \n65 Susanne 1964-02-16 00:00:00+00:00 NaT \n66 Gralf-Peter 1967-01-01 00:00:00+00:00 NaT \n67 NaT NaT \n\n wikidata_url \\\n0 http://www.wikidata.org/entity/Q11726 \n1 http://www.wikidata.org/entity/Q86043 \n2 http://www.wikidata.org/entity/Q103088 \n3 http://www.wikidata.org/entity/Q15449424 \n4 http://www.wikidata.org/entity/Q84165 \n.. ... \n63 http://www.wikidata.org/entity/Q2129347 \n64 http://www.wikidata.org/entity/Q95245830 \n65 http://www.wikidata.org/entity/Q101872 \n66 http://www.wikidata.org/entity/Q1542033 \n67 http://www.wikidata.org/entity/Q113397702 \n\n wikipedia_en \\\n0 https://en.wikipedia.org/wiki/Karl_Renner \n1 https://en.wikipedia.org/wiki/Hugo_Sinzheimer \n2 https://en.wikipedia.org/wiki/Arthur_Nussbaum \n3 None \n4 https://en.wikipedia.org/wiki/Hans_Kelsen \n.. ... \n63 None \n64 None \n65 https://en.wikipedia.org/wiki/Susanne_Baer \n66 None \n67 None \n\n wikipedia_de \n0 https://de.wikipedia.org/wiki/Karl_Renner \n1 https://de.wikipedia.org/wiki/Hugo_Sinzheimer \n2 https://de.wikipedia.org/wiki/Arthur_Nussbaum \n3 https://de.wikipedia.org/wiki/Ludwig_Bendix \n4 https://de.wikipedia.org/wiki/Hans_Kelsen \n.. ... \n63 https://de.wikipedia.org/wiki/Ralf_Poscher \n64 None \n65 https://de.wikipedia.org/wiki/Susanne_Baer \n66 https://de.wikipedia.org/wiki/Gralf-Peter_Call... \n67 None \n\n[68 rows x 11 columns]", + "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>fullName</th>\n <th>qid</th>\n <th>itemdesc</th>\n <th>sexOrGender</th>\n <th>familyName</th>\n <th>givenName</th>\n <th>dateOfBirth</th>\n <th>dateOfDeath</th>\n <th>wikidata_url</th>\n <th>wikipedia_en</th>\n <th>wikipedia_de</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>Karl Renner</td>\n <td>Q11726</td>\n <td>first President of Austria (1870–1950)</td>\n <td>male</td>\n <td>Renner</td>\n <td>Karl</td>\n <td>1870-12-14 00:00:00+00:00</td>\n <td>1950-12-31 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q11726</td>\n <td>https://en.wikipedia.org/wiki/Karl_Renner</td>\n <td>https://de.wikipedia.org/wiki/Karl_Renner</td>\n </tr>\n <tr>\n <th>1</th>\n <td>Hugo Sinzheimer</td>\n <td>Q86043</td>\n <td>German politician (1875-1945)</td>\n <td>male</td>\n <td>Sinzheimer</td>\n <td>D. Hugo</td>\n <td>1875-01-01 00:00:00+00:00</td>\n <td>1945-09-16 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q86043</td>\n <td>https://en.wikipedia.org/wiki/Hugo_Sinzheimer</td>\n <td>https://de.wikipedia.org/wiki/Hugo_Sinzheimer</td>\n </tr>\n <tr>\n <th>2</th>\n <td>Arthur Nussbaum</td>\n <td>Q103088</td>\n <td>German American jurist</td>\n <td>male</td>\n <td>Nussbaum</td>\n <td>Arthur</td>\n <td>1877-01-01 00:00:00+00:00</td>\n <td>1964-01-01 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q103088</td>\n <td>https://en.wikipedia.org/wiki/Arthur_Nussbaum</td>\n <td>https://de.wikipedia.org/wiki/Arthur_Nussbaum</td>\n </tr>\n <tr>\n <th>3</th>\n <td>Ludwig Bendix</td>\n <td>Q15449424</td>\n <td>German economist, civil law notary and lawyer ...</td>\n <td>male</td>\n <td>Bendix</td>\n <td>Ludwig</td>\n <td>1877-06-28 00:00:00+00:00</td>\n <td>1954-01-03 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q15449424</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Ludwig_Bendix</td>\n </tr>\n <tr>\n <th>4</th>\n <td>Hans Kelsen</td>\n <td>Q84165</td>\n <td>Austrian lawyer</td>\n <td>male</td>\n <td>Kelsen</td>\n <td>Hans</td>\n <td>1881-10-11 00:00:00+00:00</td>\n <td>1973-04-19 00:00:00+00:00</td>\n <td>http://www.wikidata.org/entity/Q84165</td>\n <td>https://en.wikipedia.org/wiki/Hans_Kelsen</td>\n <td>https://de.wikipedia.org/wiki/Hans_Kelsen</td>\n </tr>\n <tr>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th>63</th>\n <td>Ralf Poscher</td>\n <td>Q2129347</td>\n <td>German legal historian</td>\n <td>male</td>\n <td></td>\n <td>Ralf</td>\n <td>1962-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q2129347</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Ralf_Poscher</td>\n </tr>\n <tr>\n <th>64</th>\n <td>Stefan Machura</td>\n <td>Q95245830</td>\n <td>None</td>\n <td>male</td>\n <td></td>\n <td>Stefan</td>\n <td>1962-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q95245830</td>\n <td>None</td>\n <td>None</td>\n </tr>\n <tr>\n <th>65</th>\n <td>Susanne Baer</td>\n <td>Q101872</td>\n <td>German judge</td>\n <td>female</td>\n <td>Baer</td>\n <td>Susanne</td>\n <td>1964-02-16 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q101872</td>\n <td>https://en.wikipedia.org/wiki/Susanne_Baer</td>\n <td>https://de.wikipedia.org/wiki/Susanne_Baer</td>\n </tr>\n <tr>\n <th>66</th>\n <td>Gralf-Peter Calliess</td>\n <td>Q1542033</td>\n <td>German jurist</td>\n <td>male</td>\n <td>Calliess</td>\n <td>Gralf-Peter</td>\n <td>1967-01-01 00:00:00+00:00</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q1542033</td>\n <td>None</td>\n <td>https://de.wikipedia.org/wiki/Gralf-Peter_Call...</td>\n </tr>\n <tr>\n <th>67</th>\n <td>Raymund Werle</td>\n <td>Q113397702</td>\n <td>None</td>\n <td>male</td>\n <td></td>\n <td></td>\n <td>NaT</td>\n <td>NaT</td>\n <td>http://www.wikidata.org/entity/Q113397702</td>\n <td>None</td>\n <td>None</td>\n </tr>\n </tbody>\n</table>\n<p>68 rows × 11 columns</p>\n</div>" }, - "execution_count": 1, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } @@ -109,6 +109,19 @@ "Gralf-Peter Calliess (Q1542033)\n", "Hagen Hof (Q113789632)\n", "Ulrike Schultz (Q113807259)\n", + "Wolfgang Abendroth (Q69166)\n", + "Frank Rotter (Q94923308)\n", + "Paul Trappe (Q1785021)\n", + "Peter Noll (Q2077311)\n", + "Heinrich Popitz (Q1598508)\n", + "Erich Fechner (Q26233977)\n", + "Ulrich Klug (Q1802787)\n", + "Rüdiger Schott (Q1442571)\n", + "Josef Falke (Q106133888)\n", + "Raymund Werle (Q113397702)\n", + "Winfried Hassemer (Q105358)\n", + "Dietrich Rueschemeyer (Q93237353)\n", + "René König (Q76112) \n", "\"\"\".split(\"\\n\")\n", "\n", "from lib.wikidata import get_person_info_from_wikidata\n", @@ -124,8 +137,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-03-30T06:54:28.149156500Z", - "start_time": "2024-03-30T06:53:14.107819100Z" + "end_time": "2024-04-08T16:30:59.673162500Z", + "start_time": "2024-04-08T16:29:46.870252200Z" } }, "id": "19ddabbda261cc90" @@ -133,7 +146,7 @@ { "cell_type": "markdown", "source": [ - "## Create a sorted list that can be fed into the previous cell" + "## Create a list sorted by birth year that can be pasted into the previous cell" ], "metadata": { "collapsed": false @@ -142,7 +155,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 5, "outputs": [ { "name": "stdout", @@ -158,15 +171,24 @@ "Franz Leopold Neumann (Q63195)\n", "Otto Kahn-Freund (Q121832)\n", "Ernst Eduard Hirsch (Q107033)\n", + "Erich Fechner (Q26233977)\n", "Otto Kirchheimer (Q214397)\n", + "Wolfgang Abendroth (Q69166)\n", + "René König (Q76112)\n", "Helmut Schelsky (Q104272)\n", "Hans Ryffel (Q21035905)\n", + "Ulrich Klug (Q1802787)\n", "Theo Rasehorn (Q1304659)\n", "Rolf Bender (Q59533437)\n", "Rudolf Wassermann (Q1551290)\n", "Thilo Ramm (Q59533838)\n", + "Heinrich Popitz (Q1598508)\n", + "Peter Noll (Q2077311)\n", "Niklas Luhmann (Q57238)\n", + "Rüdiger Schott (Q1442571)\n", "Rudolf Wiethölter (Q1512482)\n", + "Dietrich Rueschemeyer (Q93237353)\n", + "Paul Trappe (Q1785021)\n", "Günter Dux (Q1560417)\n", "Jutta Limbach (Q72551)\n", "Thomas Raiser (Q27909309)\n", @@ -176,6 +198,8 @@ "Volkmar Gessner (Q15435946)\n", "Klaus F. Röhl (Q27148390)\n", "Erhard Blankenburg (Q51595283)\n", + "Frank Rotter (Q94923308)\n", + "Winfried Hassemer (Q105358)\n", "Manfred Weiss (Q1588285)\n", "Rüdiger Voigt (Q1682026)\n", "Roland Girtler (Q112873)\n", @@ -186,21 +210,25 @@ "Dieter Martiny (Q1222459)\n", "Gunther Teubner (Q98304)\n", "Konstanze Plett (Q95192683)\n", + "Hagen Hof (Q113789632)\n", + "Ulrike Schultz (Q113807259)\n", "Armin Höland (Q15435996)\n", + "Josef Falke (Q106133888)\n", "Susanne Karstedt (Q2369299)\n", "Leo Kißler (Q63203841)\n", "Fritz Jost (Q105946060)\n", - "Ralf Rogowski (Q20128038)\n", "Doris Lucke (Q1245242)\n", + "Ralf Rogowski (Q20128038)\n", "Wolfgang Ludwig-Mayerhofer (Q2590472)\n", "Kai Bussmann (Q1552696)\n", "Dorothea Jansen (Q21258453)\n", "Alfons Bora (Q2644328)\n", "Ute Sacksofsky (Q48562036)\n", - "Stefan Machura (Q95245830)\n", "Ralf Poscher (Q2129347)\n", + "Stefan Machura (Q95245830)\n", "Susanne Baer (Q101872)\n", - "Gralf-Peter Calliess (Q1542033)\n" + "Gralf-Peter Calliess (Q1542033)\n", + "Raymund Werle (Q113397702)\n" ] } ], @@ -210,8 +238,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-03-30T06:54:56.658467800Z", - "start_time": "2024-03-30T06:54:56.653920600Z" + "end_time": "2024-04-08T16:31:38.484236500Z", + "start_time": "2024-04-08T16:31:38.455546200Z" } }, "id": "4d6da32e2fbc1740"