@@ -3,7 +3,7 @@ README-ContDataQC
3
3
4
4
<!-- README.md is generated from README.Rmd. Please edit that file -->
5
5
6
- #> Last Update: 2021-04-02 21:13:00
6
+ #> Last Update: 2022-06-15 17:05:50
7
7
8
8
# ContDataQC
9
9
@@ -35,8 +35,8 @@ To install the current version of the code from GitHub use the example
35
35
below.
36
36
37
37
``` r
38
- if (! require(devtools )){install.packages(" devtools " )} # install if needed
39
- devtools :: install_github(" leppott/ContDataQC" )
38
+ if (! require(remotes )){install.packages(" remotes " )} # install if needed
39
+ remotes :: install_github(" leppott/ContDataQC" )
40
40
```
41
41
42
42
The vignette (big help file) isn’t created when installing from GitHub
@@ -47,8 +47,8 @@ install over and existing install of the same version (e.g., the same
47
47
version without the vignettes).
48
48
49
49
``` r
50
- if (! require(devtools )){install.packages(" devtools " )} # install if needed
51
- devtools :: install_github(" leppott/ContDataQC" , force = TRUE , build_vignettes = TRUE )
50
+ if (! require(remotes )){install.packages(" remotes " )} # install if needed
51
+ remotes :: install_github(" leppott/ContDataQC" , force = TRUE , build_vignettes = TRUE )
52
52
```
53
53
54
54
If dependent libraries do not install you can install them separately.
@@ -58,7 +58,7 @@ packages below and then retry installing ContDataQC.
58
58
59
59
``` r
60
60
# libraries to be installed
61
- pkg <- c(" devtools " # install helper for non CRAN libraries
61
+ pkg <- c(" remotes " # install helper for non CRAN libraries
62
62
, " installr" # install helper
63
63
, " digest" # caused error in R v3.2.3 without it
64
64
, " dataRetrieval" # loads USGS data into R
@@ -87,13 +87,13 @@ lapply(pkg, function(x) install.packages(x))
87
87
```
88
88
89
89
Non-CRAN packages have to be installed separately from GitHub using
90
- devtools .
90
+ remotes .
91
91
92
92
``` r
93
- if (! require(devtools )){install.packages(" devtools " )} # install if needed
93
+ if (! require(remotes )){install.packages(" remotes " )} # install if needed
94
94
# non-CRAN packages
95
- devtools :: install_github(" jasonelaw/iha" , force = TRUE , build_vignettes = TRUE )
96
- devtools :: install_github(" tsangyp/StreamThermal" , force = TRUE , build_vignettes = TRUE )
95
+ remotes :: install_github(" jasonelaw/iha" , force = TRUE , build_vignettes = TRUE )
96
+ remotes :: install_github(" tsangyp/StreamThermal" , force = TRUE , build_vignettes = TRUE )
97
97
```
98
98
99
99
Additionally Pandoc is required for creating the reports and needs to be
@@ -158,13 +158,13 @@ setwd(myDir.BASE)
158
158
159
159
# Planned Updates
160
160
161
- - ~~ Spell out “AW”" and other abbreviations (e.g.,
161
+ - ~~ Spell out “AW”” and other abbreviations (e.g.,
162
162
AirWater). 20170308. On hold.~~
163
163
164
164
- ~~ Gaps in data not always evident in the plots. 20170308.~~
165
165
166
166
- ~~ Use futile.logger to better log output for user. Issue
167
- \ # 29. 20170606.~~
167
+ #29 . 20170606.~~
168
168
169
169
- Debug Aggregate operation. 20170919.
170
170
@@ -210,7 +210,7 @@ much easier to use the code below to call the vignette by name. There is
210
210
also be a link to the vignette at the top of the help index for the
211
211
package.
212
212
213
- “C:\\ Programs\\ R\\ R-3.4.2\\ library\\ ContDataQC\\ doc\\ ContDataQC \_ Vignette .html”
213
+ “C:\\ Programs\\ R\\ R-3.4.2\\ library\\ ContDataQC\\ doc\\ ContDataQC_Vignette .html”
214
214
215
215
``` r
216
216
vignette(" ContDataQC_Vignette" , package = " ContDataQC" )
@@ -222,7 +222,7 @@ above if dependent packages are not installed the vignette will fail to
222
222
build. See above for installing packages.
223
223
224
224
``` r
225
- library(devtools )
225
+ library(remotes )
226
226
install_github(" leppott/ContDataQC" , force = TRUE , build_vignettes = TRUE )
227
227
```
228
228
0 commit comments