Giter VIP home page Giter VIP logo

rtraining's Introduction

R Training

Lifecycle: experimental Project Status: WIP

Contents


Package {rtraining}: R Training Resources, Guides, Tips, and Knowledge Base.
Current version is 0.0.1.


The goal of rtraining is to provide useful resources, knowledge, and walkthroughs for new R developers.

The package is split into three main areas:

  1. R Setup and Configuration: a thorough walkthrough for setting up and configuring R, RStudio, and various other software in an efficient manner.

  2. R Workflows: example workflows showcasing the main types of work done with R, including, but not limited to R Data Analysis Projects, Reporting with RMarkdown, R Shiny Applications, R Package Development.

  3. R Tips & Tricks: General tips and tricks learned over time from my experiences with R.

Installation

You can install the released version of rtraining from CRAN with:

install.packages("rtraining")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("jimbrig/rtraining")

The list of dependencies required to install this package is: attachment, chameleon, devtools, knitr, pkgdown, rmarkdown, roxygen2, utils, xfun.

To install the package, you can run the following script

# install.packages("remotes")
remotes::install_local(path = "rtraining_0.0.1.tar.gz")

In case something went wrong, you may want to install dependencies before using:

# Remotes ----
install.packages("remotes")
remotes::install_github('ThinkR-open/chameleon')
# Attachments ----
to_install <- c("xfun")
  for (i in to_install) {
    message(paste("looking for ", i))
    if (!requireNamespace(i)) {
      message(paste("     installing", i))
      install.packages(i)
    }
  }

Once you have the package installed you can open the website directly by running:

library(rtraining)
rtraining::open_pkgdown()

Similarly you can open the package bookdown with:

rtraining::open_guide()

rtraining's People

Contributors

jimbrig avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.