├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── QueryWikidataR.Rproj ├── R ├── QueryWikidataR-package.r ├── class_related_functions.R ├── item_from_property_code_functions.R ├── query_location_functions.R ├── query_property_functions.R └── wikipedia_related_functions.R ├── README.Rmd ├── README.md └── man ├── QueryWikidataR.Rd ├── get_projects_articles.Rd ├── get_wikidata.Rd ├── get_wikipedia_articles.Rd ├── link_property_class.Rd ├── query_item_from_property_code.Rd ├── query_location_1.Rd ├── query_location_2.Rd ├── query_location_3.Rd ├── query_location_property_1.Rd ├── query_location_property_2.Rd ├── query_location_property_3.Rd ├── query_property_class.Rd ├── read_item_from_property_code.Rd ├── read_items_list.Rd ├── read_property_class.Rd ├── read_property_identifier.Rd └── read_property_list.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Serena Signorelli 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /QueryWikidataR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/QueryWikidataR.Rproj -------------------------------------------------------------------------------- /R/QueryWikidataR-package.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/R/QueryWikidataR-package.r -------------------------------------------------------------------------------- /R/class_related_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/R/class_related_functions.R -------------------------------------------------------------------------------- /R/item_from_property_code_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/R/item_from_property_code_functions.R -------------------------------------------------------------------------------- /R/query_location_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/R/query_location_functions.R -------------------------------------------------------------------------------- /R/query_property_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/R/query_property_functions.R -------------------------------------------------------------------------------- /R/wikipedia_related_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/R/wikipedia_related_functions.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/README.md -------------------------------------------------------------------------------- /man/QueryWikidataR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/QueryWikidataR.Rd -------------------------------------------------------------------------------- /man/get_projects_articles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/get_projects_articles.Rd -------------------------------------------------------------------------------- /man/get_wikidata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/get_wikidata.Rd -------------------------------------------------------------------------------- /man/get_wikipedia_articles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/get_wikipedia_articles.Rd -------------------------------------------------------------------------------- /man/link_property_class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/link_property_class.Rd -------------------------------------------------------------------------------- /man/query_item_from_property_code.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/query_item_from_property_code.Rd -------------------------------------------------------------------------------- /man/query_location_1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/query_location_1.Rd -------------------------------------------------------------------------------- /man/query_location_2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/query_location_2.Rd -------------------------------------------------------------------------------- /man/query_location_3.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/query_location_3.Rd -------------------------------------------------------------------------------- /man/query_location_property_1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/query_location_property_1.Rd -------------------------------------------------------------------------------- /man/query_location_property_2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/query_location_property_2.Rd -------------------------------------------------------------------------------- /man/query_location_property_3.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/query_location_property_3.Rd -------------------------------------------------------------------------------- /man/query_property_class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/query_property_class.Rd -------------------------------------------------------------------------------- /man/read_item_from_property_code.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/read_item_from_property_code.Rd -------------------------------------------------------------------------------- /man/read_items_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/read_items_list.Rd -------------------------------------------------------------------------------- /man/read_property_class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/read_property_class.Rd -------------------------------------------------------------------------------- /man/read_property_identifier.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/read_property_identifier.Rd -------------------------------------------------------------------------------- /man/read_property_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serenasignorelli/QueryWikidataR/HEAD/man/read_property_list.Rd --------------------------------------------------------------------------------