R, No Tears
Preface
This book is a tutorial on programming R. To follow along and execute the code
samples, you will need Docker installed. The Docker
container is located on Docker Hub. After you install Docker,
you may run the container as follows.
docker run -it \
-p 8888:8888 \
-v $HOME/git/books/sphinx/r-intro/source:/root/ipynb \
oneoffcoder/book-r-intro
This Docker container runs JupyterLab on port 8888.
You may access JupyterLab at http://localhost:8888 when the container is
running.
The diagram below summarizes the structure of the R book from core language ideas into statistical work, visualization, and applied data science topics.
Read that map as a progression from language fluency into analysis workflows. The later chapters assume you can already shape data and write small functions comfortably.
Core
Statistics
Graphs
About
One-Off Coder is an education, services, and product company. Visit us online to learn how we may help you achieve lifelong success in your personal coding career or with your company’s business goals and objectives.
Copyright
Cite this book as follows.:
@misc{oneoffcoder_r_programming_2019,
title={R, No Tears},
url={https://r.oneoffcoder.com},
author={One-Off Coder},
year={2019},
month={Nov}}