https://github.com/kwb-r/kwb.pathdict
R-Package to Work with Path Dictionaries
https://github.com/kwb-r/kwb.pathdict
paths project-fakin r r-package rstats
Last synced: about 1 year ago
JSON representation
R-Package to Work with Path Dictionaries
- Host: GitHub
- URL: https://github.com/kwb-r/kwb.pathdict
- Owner: KWB-R
- License: mit
- Created: 2019-03-16T11:33:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-06-06T13:02:59.000Z (about 4 years ago)
- Last Synced: 2025-02-17T21:46:06.360Z (over 1 year ago)
- Topics: paths, project-fakin, r, r-package, rstats
- Language: R
- Homepage: https://kwb-r.github.io/kwb.pathdict/
- Size: 322 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://ci.appveyor.com/project/KWB-R/kwb-pathdict/branch/master)
[](https://travis-ci.org/KWB-R/kwb.pathdict)
[](https://codecov.io/github/KWB-R/kwb.pathdict)
[]()
# kwb.pathdict
This package provides functions to work with what I call path
dictionaries. Path dictionaries are lists defining file and folder paths.
In order not to repeat sub-paths, placeholders can be used. The package
provides functions to find duplicated sub-paths and to define placeholders
accordingly.
## Installation
For details on how to install KWB-R packages checkout our [installation tutorial](https://kwb-r.github.io/kwb.pkgbuild/articles/install.html).
```r
### Optionally: specify GitHub Personal Access Token (GITHUB_PAT)
### See here why this might be important for you:
### https://kwb-r.github.io/kwb.pkgbuild/articles/install.html#set-your-github_pat
# Sys.setenv(GITHUB_PAT = "mysecret_access_token")
# Install package "remotes" from CRAN
if (! require("remotes")) {
install.packages("remotes", repos = "https://cloud.r-project.org")
}
### Temporary workaround on Windows to fix bug in CRAN version v2.0.2
### of "remotes" (see https://github.com/r-lib/remotes/issues/248)
remotes::install_github("r-lib/remotes@18c7302637053faf21c5b025e1e9243962db1bdc")
remotes::install_github("KWB-R/kwb.pathdict")
```
## Documentation
Release: [https://kwb-r.github.io/kwb.pathdict](https://kwb-r.github.io/kwb.pathdict)
Development: [https://kwb-r.github.io/kwb.pathdict/dev](https://kwb-r.github.io/kwb.pathdict/dev)