-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
79 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,5 @@ | |
^readme\.rmd$ | ||
^README\.md$ | ||
^codecov\.yml$ | ||
.+[.]zip | ||
.+[.]zip | ||
^cran-comments\.md$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
2017-11-06 George G. Vega Yon <[email protected]> | ||
* Solving CRAN comments. | ||
|
||
|
||
2017-11-05 George G. Vega Yon <[email protected]> | ||
* Preparing CRAN release. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Package: googlePublicData | ||
Type: Package | ||
Title: Working with Google's Public Data Explorer DSPL Metadata Files | ||
Version: 0.16.0 | ||
Date: 2017-11-05 | ||
Title: Working with Google's 'Public Data Explorer' DSPL Metadata Files | ||
Version: 0.16.1 | ||
Date: 2017-11-06 | ||
Authors@R: person("George", "Vega Yon", email="[email protected]", | ||
role =c("aut","cre")) | ||
Description: Provides a collection of functions to set up 'Google Public Data Explorer' | ||
data visualization tool with your own data, building automaticaly the corresponding | ||
DataSet Publishing Language file, or DSPL (XML), | ||
metadata file jointly with the CSV files. All zip-up and ready to be published in | ||
'Public Data Explorer'. | ||
<https://www.google.com/publicdata/> data visualization tool with your own data, | ||
building automatically the corresponding DataSet Publishing Language file, or | ||
DSPL (XML), metadata file jointly with the CSV files. All zip-up and ready to | ||
be published in 'Public Data Explorer'. | ||
Depends: | ||
R (>= 3.2.0) | ||
Imports: XML, utils, readxl | ||
|
@@ -18,4 +18,7 @@ URL: http://github.com/gvegayon/googlePublicData/ | |
BugReports: http://github.com/gvegayon/googlePublicData/issues | ||
LazyLoad: yes | ||
RoxygenNote: 6.0.1 | ||
Suggests: testthat, covr, googleVis | ||
Suggests: | ||
testthat, | ||
covr, | ||
googleVis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
## R CMD check results | ||
|
||
0 errors | 0 warnings | 0 note | ||
|
||
## Reverse dependencies | ||
|
||
There are no reverse dependencies. | ||
|
||
--- | ||
|
||
* I've included the changes suggested on the DESCRIPTION file. | ||
|
||
* I've fixed the example (which was enclosed by a dontrun) as suggested. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
citHeader("To cite the 'googlePublicData' package in publications use:") | ||
year <- sub("-.*", "", meta$Date) | ||
note <- sprintf("R package version %s", meta$Version) | ||
|
||
citEntry(entry="Manual", | ||
title = "googlePublicData: Working with Google's Public Data Explorer DSPL Metadata Files", | ||
author = person("George", "Vega Yon", email="[email protected]", role=c("aut","cre")), | ||
year = 2015, | ||
month = "July", | ||
url = "http://github.com/gvegayon/googlePublicData", | ||
textVersion = | ||
paste("George G. Vega Yon", | ||
"Working with Google's Public Data Explorer DSPL Metadata Files")) | ||
bibentry(bibtype = "Manual", | ||
title = "{netdiffuseR}: Analysis of Diffusion and Contagion Processes on Networks", | ||
author = c( | ||
person("George", "Vega Yon"), | ||
person("Stephanie", "Dyal"), | ||
person("Timothy", "Hayes"), | ||
person("Thomas", "Valente")), | ||
year = year, | ||
note = note, | ||
url = "https://github.com/USCCANA/netdiffuseR") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
|
||
|
||
CHANGES IN VERSION 0.16.1 (2017-11-06) | ||
|
||
|
||
- Correcting wrong example. | ||
|
||
|
||
|
||
CHANGES IN VERSION 0.16.0 (2017-11-05) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
news: | ||
Rscript -e "rmarkdown::pandoc_convert('NEWS.md', 'plain', output='inst/NEWS')"&& \ | ||
head -n 80 inst/NEWS | ||
check: | ||
cd ..&&R CMD build googlePublicData/ && \ | ||
R CMD check --as-cran googlePublicData*.tar.gz | ||
|
||
checkv: | ||
cd ..&&R CMD build googlePublicData/ && \ | ||
R CMD check --as-cran --use-valgrind googlePublicData*.tar.gz | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters