https://github.com/sciviews/svmisc
Miscellaneous functions for SciViews or general use
https://github.com/sciviews/svmisc
cran gui r r-package sciviews
Last synced: 9 months ago
JSON representation
Miscellaneous functions for SciViews or general use
- Host: GitHub
- URL: https://github.com/sciviews/svmisc
- Owner: SciViews
- License: other
- Created: 2016-03-16T02:15:54.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-11-14T11:20:36.000Z (over 1 year ago)
- Last Synced: 2025-04-15T15:02:42.520Z (about 1 year ago)
- Topics: cran, gui, r, r-package, sciviews
- Language: R
- Homepage: https://www.sciviews.org/svMisc/
- Size: 5.38 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# ‘SciViews::R’ - Miscellaneous Functions 
[](https://github.com/SciViews/svMisc/actions/workflows/R-CMD-check.yaml)
[](https://codecov.io/gh/SciViews/svMisc)
[](https://cran.r-project.org/package=svMisc)
[](https://sciviews.r-universe.dev/svMisc)
[](https://www.gnu.org/licenses/gpl-2.0.html)
[](https://lifecycle.r-lib.org/articles/stages.html#stable)
{svMisc} provides a series of functions that are used by the other
packages that make the SciViews::R dialect. You can also use most of
them directly, like a progress bar, a function to run analyses in batch
(and recover in case of error), management of a temporary environment,
etc.
## Installation
{svMisc} is available from CRAN, but it is an old version. You should
install it from the [SciViews
R-Universe](https://sciviews.r-universe.dev). To install this package
and its dependencies, run the following command in R:
``` r
install.packages('svMisc', repos = c('https://sciviews.r-universe.dev',
'https://cloud.r-project.org'))
```
An older version of {svMisc} can be installed from
[CRAN](http://cran.r-project.org):
``` r
install.packages("svMisc")
```
You can also install the latest development version. Make sure you have
the {remotes} R package installed:
``` r
install.packages("remotes")
```
Use `install_github()` to install the {svMisc} package from GitHub
(source from **main** branch will be recompiled on your machine):
``` r
remotes::install_github("SciViews/svMisc")
```
R should install all required dependencies automatically, and then it
should compile and install {svMisc}.
## Further explore {svMisc}
You can get further help about this package this way: Make the {svMisc}
package available in your R session:
``` r
library("svMisc")
```
Get help about this package:
``` r
library(help = "svMisc")
help("svMisc-package")
vignette("svMisc") # None is installed with install_github()
```
For further instructions, please, refer to the help pages at
.
## Code of Conduct
Please note that the {svMisc} package is released with a [Contributor
Code of
Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html).
By contributing to this project, you agree to abide by its terms.
## Note to developers
This package used to be developed on R-Forge in the past. However, the
latest [R-Forge
version](https://r-forge.r-project.org/projects/sciviews/) was moved to
this Github repository on 2016-03-16 (SVN version 569). **Please, do not
use R-Forge anymore for SciViews development, use this Github repository
instead.**