From 24aa8ddfea48b1184c1c7690e11c44b3dcb3d9aa Mon Sep 17 00:00:00 2001 From: Isaac Woodard Date: Sun, 28 Apr 2024 12:04:39 -0700 Subject: [PATCH] Fixed typo line 651 writted to written --- basics.rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basics.rmd b/basics.rmd index f4224fc..d985375 100644 --- a/basics.rmd +++ b/basics.rmd @@ -648,4 +648,4 @@ As you've seen, R is a language that you can use to talk to your computer. You w The two most important components of the R language are objects, which store data, and functions, which manipulate data. R also uses a host of operators like `+`, `-`, `*`, `/`, and `<-` to do basic tasks. As a data scientist, you will use R objects to store data in your computer's memory, and you will use functions to automate tasks and do complicated calculations. We will examine objects in more depth later in [Project 2: Playing Cards] and dig further into functions in [Project 3: Slot Machine]. The vocabulary you have developed here will make each of those projects easier to understand. However, we're not done with your dice yet. -In [Packages and Help Pages](#packages), you'll run some simulations on your dice and build your first graphs in R. You'll also look at two of the most useful components of the R language: R _packages_, which are collections of functions writted by R's talented community of developers, and R documentation, which is a collection of help pages built into R that explains every function and data set in the language. +In [Packages and Help Pages](#packages), you'll run some simulations on your dice and build your first graphs in R. You'll also look at two of the most useful components of the R language: R _packages_, which are collections of functions written by R's talented community of developers, and R documentation, which is a collection of help pages built into R that explains every function and data set in the language.