An R package for building Google's Data Sets Publication Language (DSPL) metadata files used in Public Data Explorer.

Downloads Travis-CI Build Status AppVeyor Build Status codecov

Features:

So you don't need to mess with the XML coding at all!

library(googlePublicData)

# This path has some csv files that we will use
data.path <-try(paste(.libPaths()[1],'/googlePublicData/data',sep=''), silent=T)
data.path

# The dspl function looks for csv files in that paths, and analyzes them
mydspl <- dspl(path=data.path, sep=";")

# If we wanted to write the zip file... ready to be uploaded to
# http://publicdata.google.com
# dspl(path=data.path, sep=";", output= "mydspl.zip")

# Printing the data
mydspl

# Summary of the dspl class object
summary(mydspl)


gvegayon/googlePublicData documentation built on June 11, 2021, 11:44 a.m.