Learn R Programming

⚠️There's a newer version (1.2.0) of this package.Take me there.

R6DS version 1.1.0 (Red DS)

R6DS stands for R6 class based Data Structures. The package provides reference classes implementing some useful data stuctures.

How to install

You can install the development version from GitHub

devtools::install_github("yukai-yang/R6DS")

provided that the package “devtools” has been installed beforehand.

Example

After installing the package, you need to load (attach better say) it by running the code

library(R6DS)

You can first check the information and the current version number by running

version()
#> R6DS version 1.1.0 (Red DS)

Then you can take a look at all the available functions and data in the package

ls( grep("R6DS", search()) ) 
#> [1] "RBST"    "RDeque"  "RDict"   "RDLL"    "RQueue"  "RSet"    "RStack" 
#> [8] "version"

Now you can dive deeply into the package by reading the manual

?R6DS

Enjoy!

Copy Link

Version

Install

install.packages('R6DS')

Monthly Downloads

149

Version

1.1.0

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Yukai Yang

Last Published

May 14th, 2019

Functions in R6DS (1.1.0)

RSet

The RSet reference class
RStack

The RStack reference class
R6DS

R6DS: provides reference classes implementing some useful data stuctures.
RBST

The RBST reference class
version

Show the version number of some information.
RDict

The RDict reference class
RQueue

The RQueue reference class
RDLL

The RDLL reference class
RDeque

The RDeque reference class