-
Notifications
You must be signed in to change notification settings - Fork 11
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
58 changed files
with
105 additions
and
3,412 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 @@ | ||
*.html |
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,50 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
name: pkgdown | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
pkgdown: | ||
runs-on: ubuntu-latest | ||
# Only restrict concurrency for non-PR jobs | ||
concurrency: | ||
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::pkgdown, local::. | ||
needs: website | ||
|
||
- name: Build site | ||
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | ||
shell: Rscript {0} | ||
|
||
- name: Deploy to GitHub pages 🚀 | ||
if: github.event_name != 'pull_request' | ||
uses: JamesIves/[email protected] | ||
with: | ||
clean: false | ||
branch: gh-pages | ||
folder: docs |
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 |
---|---|---|
|
@@ -20,3 +20,4 @@ vignettes/*.tex | |
tests/testthat/Rplots.pdf | ||
revdep | ||
pkgdown | ||
docs |
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,12 +1,18 @@ | ||
Type: Package | ||
Package: corrgram | ||
Title: Plot a Correlogram | ||
Version: 1.14 | ||
Authors@R: person("Kevin","Wright", email="[email protected]", comment=c(ORCID = "0000-0002-0617-8673"), role=c("aut","cre","cph")) | ||
Date: 2021-04-29 | ||
Type: Package | ||
Authors@R: | ||
person("Kevin", "Wright", , "[email protected]", role = c("aut", "cre", "cph"), | ||
comment = c(ORCID = "0000-0002-0617-8673")) | ||
Description: Calculates correlation of variables and displays the results | ||
graphically. Included panel functions can display points, shading, ellipses, and | ||
correlation values with confidence intervals. See Friendly (2002) <doi:10.1198/000313002533>. | ||
graphically. Included panel functions can display points, shading, | ||
ellipses, and correlation values with confidence intervals. See | ||
Friendly (2002) <doi:10.1198/000313002533>. | ||
License: MIT + file LICENSE | ||
URL: https://kwstat.github.io/corrgram/, http://kwstat.github.io/corrgram/ | ||
BugReports: https://github.com/kwstat/corrgram/issues/ | ||
Imports: | ||
graphics, | ||
grDevices, | ||
|
@@ -20,11 +26,8 @@ Suggests: | |
seriation, | ||
sfsmisc, | ||
testthat | ||
License: MIT + file LICENSE | ||
LazyData: true | ||
>>>>>>> Stashed changes | ||
VignetteBuilder: | ||
knitr | ||
Encoding: UTF-8 | ||
URL: https://kwstat.github.io/corrgram/ | ||
BugReports: https://github.com/kwstat/corrgram/issues/ | ||
VignetteBuilder: knitr | ||
RoxygenNote: 7.2.3 | ||
LazyData: true | ||
RoxygenNote: 7.3.2 |
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,4 @@ | ||
url: http://kwstat.github.io/corrgram/ | ||
template: | ||
bootstrap: 5 | ||
|
Oops, something went wrong.