-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The geom_ts function can set the left and right axis ranges. Solve the problem that the maximum value of vocct, OFP, LOH is equal to 75th percentile. Solve the problem that the trs function fails to keep the original column names. Updated the mechanism of extracting data from tuv. Prepared default templates for vignette and pkgdown, upload them first for testing. Commented llab, plab, alab, blab in geom_ts as "list of text expressions".
- Loading branch information
1 parent
0a02881
commit 33e571e
Showing
11 changed files
with
311 additions
and
60 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
on: | ||
push: | ||
branches: [main, master] | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
name: pkgdown | ||
|
||
jobs: | ||
pkgdown: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v1 | ||
|
||
- uses: r-lib/actions/setup-r@v1 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v1 | ||
with: | ||
extra-packages: pkgdown | ||
needs: website | ||
|
||
- name: Deploy package | ||
run: | | ||
git config --local user.name "$GITHUB_ACTOR" | ||
git config --local user.email "[email protected]" | ||
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)' |
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,7 +1,7 @@ | ||
Package: foqat | ||
Type: Package | ||
Title: Field Observation Quick Analysis Toolkit | ||
Version: 2.0.1 | ||
Version: 2.0.2 | ||
Author: Tianshu Chen | ||
Maintainer: Tianshu Chen <[email protected]> | ||
Description: Tools for quickly processing and analyzing | ||
|
@@ -16,7 +16,8 @@ Description: Tools for quickly processing and analyzing | |
2. Ozone Formation Potential (OFP): <https://ww2.arb.ca.gov/sites/default/files/classic/regact/2009/mir2009/mir10.pdf>, Zhang et al.(2021) <doi:10.5194/acp-21-11053-2021>. | ||
3. Aerosol Formation Potential (AFP): Wenjing Wu et al. (2016) <doi:10.1016/j.jes.2016.03.025>. | ||
4. TUV model: <https://www2.acom.ucar.edu/modeling/tropospheric-ultraviolet-and-visible-tuv-radiation-model>. | ||
URL: https://github.com/tianshu129/foqat | ||
URL: https://github.com/tianshu129/foqat, | ||
https://tianshu129.github.io/foqat/ | ||
BugReports: https://github.com/tianshu129/foqat/issues | ||
Depends: R (>= 3.5.0) | ||
Imports: lubridate, magrittr, dplyr, plyr, stats, stringr, utils, | ||
|
@@ -25,6 +26,10 @@ Imports: lubridate, magrittr, dplyr, plyr, stats, stringr, utils, | |
License: GPL-3 | file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 7.1.1 | ||
RoxygenNote: 7.1.2 | ||
NeedsCompilation: no | ||
Packaged: 2021-08-17 16:44:03 UTC; Administrator | ||
Suggests: | ||
knitr, | ||
rmarkdown | ||
VignetteBuilder: knitr |
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
Oops, something went wrong.