SciViews

SciViews(SciViews::R 方言的主包)。SciViews 提供了一系列开源软件来补充 R,用于可重复工作流程中的统计计算。「SciViews (main package for the SciViews::R dialect). SciViews provides a series of open source software to supplement R, for statistical computing in a reproductive workflow.」

Github stars Tracking Chart

SciViews

'SciViews'主要通过同名函数提供 SciViews::R 方言。它加载了一系列的 tidyverse 和 Sciviews 包,以便用实现该方言的函数来补充基础 R。例如,请参见 Science des Données Biologiques I(生物数据科学I)Science des Données Biologiques II(生物数据科学II)(法语)这两本书,以获得使用 SciViews::R 的大量例子。

安装

最新的稳定版 "SciViews" 可以简单地从 CRAN 中安装。

install.packages("SciViews")

你也可以安装最新的开发版本。确保你已经安装了 "devtools" R 包。

install.packages("devtools")

使用 install_github() 从 Github 上安装 "SciViews" 包(主分支的源码会在你的机器上重新编译)。

devtools::install_github("SciViews/SciViews")

R 应该自动安装所有需要的依赖关系,然后编译并安装'SciViews'。

最新开发版本的'SciViews'(源码+编译时R的最新稳定版本的 Windows 二进制文件)也可以从 appveyor 获得。

进一步探索'SciViews'

你可以通过这种方式获得关于这个包的进一步帮助。让 "SciViews" 包和所有其他 SciViews::R 方言所需的包在你的 R 会话中可用。

SciViews::R()

获取关于此包的帮助信息。

library(help = "SciViews")
help("SciViews-package")
vignette("SciViews") # None is installed with install_github()

更多的说明,请参考这些帮助页面:https://www.sciviews.org/SciViews/

行为准则

请注意,"SciViews" 项目在发布时有一个贡献者行为准则。向本项目做出贡献,即表示您同意遵守其条款。

开发者须知

这个包过去是在 R-Forge version 上开发的。然而,最新的 R-Forge 版本已于 2018-01-05 转移到这个 Github 仓库(SVN 版本 569)。请不要再使用 R-Forge 进行 SciViews 的开发,请使用这个 Github 仓库代替。


(The first version translated by vz on 2020.08.30)

Overview

Name With OwnerSciViews/SciViews
Primary LanguageR
Program languageR (Language Count: 1)
PlatformLinux, Mac, Windows
License:Other
Release Count8
Last Release Namev1.6.1 (Posted on )
First Release Namev1.1 (Posted on )
Created At2018-01-05 17:24:29
Pushed At2024-05-01 14:39:29
Last Commit At
Stargazers Count8
Watchers Count4
Fork Count0
Commits Count354
Has Issues Enabled
Issues Count0
Issue Open Count0
Pull Requests Count1
Pull Requests Open Count0
Pull Requests Close Count0
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private

SciViews - Main package

Linux & OSX Build Status
Win Build Status
Coverage Status

CRAN Status
License

Installation

Latest stable version

The latest stable version of SciViews can simply be installed from CRAN:

install.packages("SciViews")

Development version

Make sure you have the devtools R package installed:

install.packages("devtools")

Use install_github() to install the SciViews package from Github (source from master branch will be recompiled on your machine):

devtools::install_github("SciViews/SciViews")

R should install all required dependencies automatically, and then it should compile and install SciViews.

Latest devel version of SciViews (source + Windows binaires for the latest stable version of R at the time of compilation) is also available from appveyor.

Usage

Make the SciViews package available in your R session:

library("SciViews")

Get help about this package:

library(help = "SciViews")
help("SciViews-package")

For further instructions, please, refer to these help pages.

Note to developers

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

This package used to be developed on R-Forge in the past. However, the latest R-Forge version was moved to this Github repository on 2018-01-05 (SVN version 569). Please, do not use R-Forge anymore for SciViews development, use this Github repository instead.

To the top