Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ghxm/euplexdatar
R package for working with raw euplexdb data. Currently has internal use only.
https://github.com/ghxm/euplexdatar
Last synced: about 14 hours ago
JSON representation
R package for working with raw euplexdb data. Currently has internal use only.
- Host: GitHub
- URL: https://github.com/ghxm/euplexdatar
- Owner: ghxm
- Created: 2020-12-15T09:48:58.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-11-03T15:30:05.000Z (about 1 year ago)
- Last Synced: 2024-11-06T02:42:57.220Z (about 2 months ago)
- Language: R
- Homepage: https://data.euplex.org
- Size: 168 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# euplexdataR
R package for working with raw euplexdb dataCurrently, the package can perform the following data processing tasks:
- format date variables to the `Date` format
- create procedure type dummy variables
- format logical variables from char to logical
- create event and doc variables for `_proposal_` and `_final_`## Installation
To install the package, run the following code in the R console:
`````
if(!require(devtools)){
install.packages("devtools")
}
devtools::install_github("ghxm/euplexdataR")`````
Under Mac and Linux, please additionally install `protobuf`
## Usage
The package functions require a data frame object of the euplexdb dataset to be passed as the first argument. Example:
`````
df <- read.csv("your euplexdb csv file", as.is = TRUE)
euplexdb <- euplexdata::euplexdata(df)`````