Skip to content

Commit

Permalink
show installation code for BioC moxels (#682)
Browse files Browse the repository at this point in the history
* Doc changes for #680

* use remotes for installs
  • Loading branch information
topepo authored Mar 16, 2022
1 parent d8eb53f commit f89cdea
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
11 changes: 11 additions & 0 deletions man/details_pls_mixOmics.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions man/rmd/pls_mixOmics.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,20 @@ pls(num_comp = integer(1), predictor_prop = double(1)) %>%

In this case, [plsmod::pls_fit()] has the same role as above but eventually targets [mixOmics::plsda()] or [mixOmics::splsda()] .

## Installing mixOmics

This package is available via the Bioconductor repository and is not accessible via CRAN. You can install using:

```{r eval = FALSE}
if (!require("remotes", quietly = TRUE)) {
install.packages("remotes")
}
remotes::install_bioc("mixOmics")
```



## Preprocessing requirements

```{r child = "template-makes-dummies.Rmd"}
Expand Down
15 changes: 15 additions & 0 deletions man/rmd/pls_mixOmics.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,21 @@ pls(num_comp = integer(1), predictor_prop = double(1)) %>%

In this case, [plsmod::pls_fit()] has the same role as above but eventually targets [mixOmics::plsda()] or [mixOmics::splsda()] .

## Installing mixOmics

This package is available via the Bioconductor repository and is not accessible via CRAN. You can install using:


```r
if (!require("remotes", quietly = TRUE)) {
install.packages("remotes")
}

remotes::install_bioc("mixOmics")
```



## Preprocessing requirements


Expand Down

0 comments on commit f89cdea

Please sign in to comment.