You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I guess the following paragraph in 20.3.2 (or page 295 in printed book) shows inconsistent paths for raw data:
If your app contains small reference datasets, put them in data or inst/extdata. We discussed usethis::use_data() above; alternatively, you can put raw data in inst/ext and load it with read.csv(system.file("exdata", "mydata.csv", package = "myApp")) or similar.
And I guess it is better to be written like below:
If your app contains small reference datasets, put them in data or inst/extdata. We discussed usethis::use_data() above; alternatively, you can put raw data in inst/extdata and load it with read.csv(system.file("extdata", "mydata.csv", package = "myApp")) or similar.
The text was updated successfully, but these errors were encountered:
I guess the following paragraph in 20.3.2 (or page 295 in printed book) shows inconsistent paths for raw data:
And I guess it is better to be written like below:
The text was updated successfully, but these errors were encountered: