From 224ff8adf8e901ef3f707b85f8d9b0d98b52fd3d Mon Sep 17 00:00:00 2001 From: Feras Taleb <6038666+ferastaleb@users.noreply.github.com> Date: Sat, 31 Oct 2020 23:17:22 +0300 Subject: [PATCH] Fix missplining of frivolous word The wrong value is: frivilous. The right value is: frivolous --- dice.rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dice.rmd b/dice.rmd index cb2f140..08f3caa 100644 --- a/dice.rmd +++ b/dice.rmd @@ -21,7 +21,7 @@ Believe it or not, R can help you do that. Over the course of the book, you will These projects are lighthearted, but they are also deep. As you complete them, you will become an expert at the skills you need to work with data as a data scientist. You will learn how to store data in your computer's memory, how to access data that is already there, and how to transform data values in memory when necessary. You will also learn how to write your own programs in R that you can use to analyze data and run simulations. -If simulating a slot machine (or dice, or cards) seems frivilous, think of it this way: playing a slot machine is a process. Once you can simulate it, you'll be able to simulate other processes, such as bootstrap sampling, Markov chain Monte Carlo, and other data-analysis procedures. Plus, these projects provide concrete examples for learning all of the components of R programming: objects, data types, classes, notation, functions, environments, `if` trees, loops, and vectorization. This first project will make it easier to study these things by teaching you the basics of R. +If simulating a slot machine (or dice, or cards) seems frivolous, think of it this way: playing a slot machine is a process. Once you can simulate it, you'll be able to simulate other processes, such as bootstrap sampling, Markov chain Monte Carlo, and other data-analysis procedures. Plus, these projects provide concrete examples for learning all of the components of R programming: objects, data types, classes, notation, functions, environments, `if` trees, loops, and vectorization. This first project will make it easier to study these things by teaching you the basics of R. Your first mission is simple: assemble R code that will simulate rolling a pair of dice, like at a craps table. Once you have done that, we'll weight the dice a bit in your favor, just to keep things interesting. @@ -38,4 +38,4 @@ In this project, you will learn how to: Don't worry if it seems like we cover a lot of ground fast. This project is designed to give you a concise overview of the R language. You will return to many of the concepts we meet here in projects 2 and 3, where you will examine the concepts in depth. -You'll need to have both R and RStudio installed on your computer before you can use them. Both are free and easy to download. See [Appendix A](#starting) for complete instructions. If you are ready to begin, open RStudio on your computer and read on. \ No newline at end of file +You'll need to have both R and RStudio installed on your computer before you can use them. Both are free and easy to download. See [Appendix A](#starting) for complete instructions. If you are ready to begin, open RStudio on your computer and read on.