Coder Social home page Coder Social logo

knaw-huc / golden-agents-processes-of-creativity Goto Github PK

View Code? Open in Web Editor NEW
0.0 16.0 0.0 28.55 MB

Developments and findings of the Golden Agents (https://www.goldenagents.org/) Processes of Creativity case study

License: Creative Commons Attribution 4.0 International

Python 62.10% Jupyter Notebook 37.81% Shell 0.01% Makefile 0.04% Batchfile 0.05%
digital-humanities rdf golden-agents golden-age book-production stcn amsterdam creative-industries linked-open-data

golden-agents-processes-of-creativity's Introduction

Golden Agents - Processes of Creativity (case study)

Measuring innovation in book culture.

Introduction

We can observe a 'rise' of or 'renewed interest' in the illustrated book in the second half of 17th century and the beginning of the 18th century. New genres and techniques and an increasing competition in the book market lead to new collaborations between authors, printers, and illustrators. It would be interesting to track these producers who collaborated on illustrated book projects and trace whether these commercial collaborations were grounded or resulted in social and/or religious interactions. For this, we are bringing together several datasets in the Golden Agents infrastructure that each contain information on the production of books, or on social relations between actors involved in the production process.

Aim of case study:

  • Linking & querying different datasets to find overarching patterns on creative industries in the Dutch Republic

Overarching Research Question:

  • How can we map innovation in cultural production?
  • What is the relation between different sorts (bonding & bridging) of creative and social interactions?

Datasets

Linksets

See: /linksets

Methods

We will explore the potential of methods like blockmodelling and community detection. For a recent review of these methods see: Lee, C., Wilkinson, D.J. A review of stochastic block models and extensions for graph clustering, Appl Netw Sci 4, no. 122 (2019). https://doi.org/10.1007/s41109-019-0232-2

For the applicability of such methods in historical research see: John F. Padgett and Christopher K. Ansell, Robust Action and the Rise of the Medici, 1400-1434, American Journal of Sociology 98, no. 6 (1993), 1259-1319. (JSTOR: https://www.jstor.org/stable/2781822).

Analysis

An analysis of the data is available in the analysis folder and can be viewed in a Jupyter notebook. The notebook contains an exploration of the data and the application of community detection methods to the data. The notebook is part of a Master Thesis by Iman Hashemi (Utrecht University):

License

License: CC BY 4.0 DOI

The data in this repository is licensed under a Creative Commons Attribution 4.0 International license (unless otherwise specified) and can be used freely, as long as you provide attribution to the Golden Agents Project (e.g. by citation).

Contact

Golden Agents project

https://www.goldenagents.org/staff/

[email protected]

golden-agents-processes-of-creativity's People

Contributors

harmtseard avatar lvanwissen avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

golden-agents-processes-of-creativity's Issues

Linking SAA OTR to ECARTICO

We need a linkset on a person level from the SAA OTR dataset (which thereby also includes the already linked Ja, ik wil! dataset) to ECARTICO. Based on the following information, we can make a linkset in Lenticular Lens:

  • Name of a person (similarity match)
  • Marriage date (time delta on the Ondertrouw event)
  • Name of the partner for extra context (similarity match)

As soon as the production version of Lenticular Lens is stable/finished, we can make such a linkset.

Volgende stappen a.d.h.v. clusternotebook

Vragen:

  • In hoeverre is de productie van geïllustreerde boeken een oligopolie?

  • Is er een opeenvolging van clusters? Worden de kleinere clusters ook verbonden door personen?

  • Kun je clusters zien die evident een overdracht aanduiden?

  • Zijn er clusters rondom verschillende deelproducten? (e.g. portretuitgaven, bijbels, etc.) Is er een continuïteit van personen, of van (type) producten?

  • Als je een cluster ziet, dan is dat rondom één product, of rondom een continuïteit van verschillende producties die een groep samen heeft gemaakt. Kunnen we precies zien wát ze hebben opgeleverd, welke entiteiten/boeken? Hoe productief is een bepaald cluster (hieruit volgt mate van succes).

  • Zijn er langlopende clusters? Clusters die dus continuïteit aangeven? Hiervoor moeten we ook kijken naar de links tussen clusters.

  • Hoe meten we productiviteit van clusters? Aan de hand van het aantal overgeleverde titels in de STCN, of kijken we ook nog naar de status (e.g. vertaling) van een boek?

  • En hoe visualiseren we dit?

Linking RMLibrary to ECARTICO/Wikidata

We need a linkset between the RMLibrary dataset and ECARTICO. Wikidata can serve as a hub and already has many references to both datasets, but this needs to be extended.

At this moment, there are 776/1999 persons with an URI on https://id.rijksmuseum.nl/ in this dataset linked on Wikidata (property P7444), and thereby sometimes to ECARTICO (property P2915) and the NTA (property P1006).

Query on endpoint https://sparql.goldenagents.org/sparql, or through https://api.triplydb.com/s/IwdLzxjNS for every Person resource that is referred to by Wikidata:

PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>

SELECT * WHERE {
    # Query Wikidata for all entities with a Rijkmuseum Identifier
    SERVICE <https://query.wikidata.org/sparql> {
    
      ?wd wdt:P7444 ?rmid .
      BIND(URI(CONCAT("https://id.rijksmuseum.nl/310", ?rmid)) AS ?person)

      # Use Wikidata to map to Ecartico
      OPTIONAL {
        ?wd wdt:P2915 ?ecarticoid .
        BIND(URI(CONCAT("http://www.vondel.humanities.uva.nl/ecartico/persons/", ?ecarticoid)) AS ?ecartico)
      }

      # Use Wikidata to map to the NTA
      OPTIONAL {
        ?wd wdt:P1006 ?ntaid .
        BIND(URI(CONCAT("http://data.bibliotheken.nl/id/thes/p", ?ntaid)) AS ?nta)
      }
  } 
  GRAPH <https://data.goldenagents.org/datasets/u692bc364e9d7fa97b3510c6c0c8f2bb9a0e5123b/rmlibrary_20210825> {
    ?person a schema:Person ; 
          schema:name ?name .
  }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.