Skip to content

Commit

Permalink
correct vignette description
Browse files Browse the repository at this point in the history
  • Loading branch information
tsrobinson committed Nov 9, 2020
1 parent 6b0b406 commit 1344419
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions .Rhistory
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
c = sample(c("YES","NO",NA),n_obs,replace=TRUE),
d = runif(n_obs,1,10),
e = sample(c("YES","NO"), n_obs, replace = TRUE),
f = sample(c("male","female","trans","other",NA), n_obs, replace = TRUE))
# Names of bin./cat. variables
test_bin <- c("c","e")
test_cat <- c("a","f")
# Pre-process data
test_data <- convert(raw_data,
Expand Down Expand Up @@ -510,3 +504,9 @@ document()
document()
?midas_setup
vignette("custom-python")
library(devtools)
check()
release()
spell_check()
release()
setwd("~/Dropbox/rMIDAS")
8 changes: 4 additions & 4 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ library(rMIDAS)
# Point to a Python binary
set_python_env(python = "path/to/python/binary")
# Point to a virtualenv binary
# Or point to a virtualenv binary
set_python_env(python = "virtual_env", type = "virtualenv")
# Point to a condaenv, where conda can be supplied to choose a specific executable
# Or point to a condaenv, where conda can be supplied to choose a specific executable
set_python_env(python = "conda_env", type = "condaenv", conda = "auto")
# Now run rMIDAS::train() and rMIDAS::complete()...
Expand All @@ -83,8 +83,8 @@ set_python_env(python = "conda_env", type = "condaenv", conda = "auto")

**rMIDAS** is packaged with two vignettes:

1. `vignette("impute-demo", "rMIDAS")` demonstrates the basic workflow and capacities of **rMIDAS**
2. `vignette("custom-python", "rMIDAS")` provides detailed guidance on configuring Python binaries and environments, including some troubleshooting tips
1. `vignette("imputation_demo", "rMIDAS")` demonstrates the basic workflow and capacities of **rMIDAS**
2. `vignette("custom_python_versions", "rMIDAS")` provides detailed guidance on configuring Python binaries and environments, including some troubleshooting tips

## Getting help

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ data:
- `train()` constructs and trains a MIDAS imputation model
- `complete()` generates multiple completed datasets from the trained
model
- `combine()` estimates regression models on the complete data,
employing Rubin’s combination Rules
- `combine()` runs regression analysis across the complete data,
following Rubin’s combination Rules

**rMIDAS** is based on the Python class
[MIDASpy](https://github.com/MIDASverse/MIDASpy).
Expand Down Expand Up @@ -95,11 +95,11 @@ set_python_env(python = "conda_env", type = "condaenv", conda = "auto")

**rMIDAS** is packaged with two vignettes:

1. `vignette("impute-demo", "rMIDAS")` demonstrates the basic workflow
and capacities of **rMIDAS**
2. `vignette("custom-python", "rMIDAS")` provides detailed guidance on
configuring Python binaries and environments, including some
troubleshooting tips
1. `vignette("imputation_demo", "rMIDAS")` demonstrates the basic
workflow and capacities of **rMIDAS**
2. `vignette("custom_python_versions", "rMIDAS")` provides detailed
guidance on configuring Python binaries and environments, including
some troubleshooting tips

## Getting help

Expand Down

0 comments on commit 1344419

Please sign in to comment.