├── .gitignore ├── LICENSE ├── README.md ├── install.R ├── pid-graph ├── py-find-works-by-funder │ ├── README.md │ └── py-find-works-by-funder.ipynb ├── py-researcher-publications │ ├── README.md │ └── py-researcher-publications.ipynb ├── r-grant-datasets │ ├── README.md │ └── r-grant-datasets.ipynb ├── r-grant-publications │ ├── README.md │ └── r-grant-publications.ipynb ├── r-kpi │ ├── README.md │ ├── codemeta.json │ ├── kpi.png │ └── r-kpi.ipynb ├── r-organization-publications │ ├── README.md │ └── r-organization-publications.ipynb ├── r-person-publications │ ├── README.md │ ├── codemeta.json │ ├── person.png │ └── r-person-publications.ipynb ├── r-researcher-datasets │ ├── README.md │ └── r-researcher-datasets.ipynb ├── r-researcher-researcher │ ├── README.md │ └── r-researcher-researcher.ipynb ├── r-researcher-software │ ├── README.md │ └── r-researcher-software.ipynb └── workshops │ ├── jupyter_intro.md │ └── pre_rda2019_workshop_helsinki.md ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/README.md -------------------------------------------------------------------------------- /install.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/install.R -------------------------------------------------------------------------------- /pid-graph/py-find-works-by-funder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/py-find-works-by-funder/README.md -------------------------------------------------------------------------------- /pid-graph/py-find-works-by-funder/py-find-works-by-funder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/py-find-works-by-funder/py-find-works-by-funder.ipynb -------------------------------------------------------------------------------- /pid-graph/py-researcher-publications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/py-researcher-publications/README.md -------------------------------------------------------------------------------- /pid-graph/py-researcher-publications/py-researcher-publications.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/py-researcher-publications/py-researcher-publications.ipynb -------------------------------------------------------------------------------- /pid-graph/r-grant-datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-grant-datasets/README.md -------------------------------------------------------------------------------- /pid-graph/r-grant-datasets/r-grant-datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-grant-datasets/r-grant-datasets.ipynb -------------------------------------------------------------------------------- /pid-graph/r-grant-publications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-grant-publications/README.md -------------------------------------------------------------------------------- /pid-graph/r-grant-publications/r-grant-publications.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-grant-publications/r-grant-publications.ipynb -------------------------------------------------------------------------------- /pid-graph/r-kpi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-kpi/README.md -------------------------------------------------------------------------------- /pid-graph/r-kpi/codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-kpi/codemeta.json -------------------------------------------------------------------------------- /pid-graph/r-kpi/kpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-kpi/kpi.png -------------------------------------------------------------------------------- /pid-graph/r-kpi/r-kpi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-kpi/r-kpi.ipynb -------------------------------------------------------------------------------- /pid-graph/r-organization-publications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-organization-publications/README.md -------------------------------------------------------------------------------- /pid-graph/r-organization-publications/r-organization-publications.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-organization-publications/r-organization-publications.ipynb -------------------------------------------------------------------------------- /pid-graph/r-person-publications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-person-publications/README.md -------------------------------------------------------------------------------- /pid-graph/r-person-publications/codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-person-publications/codemeta.json -------------------------------------------------------------------------------- /pid-graph/r-person-publications/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-person-publications/person.png -------------------------------------------------------------------------------- /pid-graph/r-person-publications/r-person-publications.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-person-publications/r-person-publications.ipynb -------------------------------------------------------------------------------- /pid-graph/r-researcher-datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-researcher-datasets/README.md -------------------------------------------------------------------------------- /pid-graph/r-researcher-datasets/r-researcher-datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-researcher-datasets/r-researcher-datasets.ipynb -------------------------------------------------------------------------------- /pid-graph/r-researcher-researcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-researcher-researcher/README.md -------------------------------------------------------------------------------- /pid-graph/r-researcher-researcher/r-researcher-researcher.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-researcher-researcher/r-researcher-researcher.ipynb -------------------------------------------------------------------------------- /pid-graph/r-researcher-software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-researcher-software/README.md -------------------------------------------------------------------------------- /pid-graph/r-researcher-software/r-researcher-software.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/r-researcher-software/r-researcher-software.ipynb -------------------------------------------------------------------------------- /pid-graph/workshops/jupyter_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/workshops/jupyter_intro.md -------------------------------------------------------------------------------- /pid-graph/workshops/pre_rda2019_workshop_helsinki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/pid-graph/workshops/pre_rda2019_workshop_helsinki.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datacite/notebooks/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | r-3.6-2019-04-12 2 | python-3.6 3 | --------------------------------------------------------------------------------