class: inverse, center, middle # .big[.big[R]] # .huge[.teal[BAKERY]] --- class: middle, inverse # <i class="fa fa-cake-candles teal" aria-hidden="true"></i> New R project Let's start a new project in RStudio <img src="../images/project_existing_dir_rnd.png" alt="A transparent cube with a floating letter R inside is on the left and represents a new R project. Text to the right of the cube reads 'New Directory: Start a project in a brand new working directory'" style="width: 76%; margin-top: 36px;"> --- exclude: true __Step 1:__ Start a new project - In _Rstudio_ select _File_ from the top menu bar - Choose _New Project..._ - Choose _New Directory_ - Choose _New Project_ - Enter a project name such as `"Rcamp"` - Select _Browse..._ and choose a folder where you normally perform your work. - Click _Create Project_ <br> __Step 2:__ Create a new R script - __File > New File > R Script__ - Click the _floppy disk_ save icon - Give it a name: `01_bakery.R` or `day1.R` will work well --- class: middle exclude: true # Names and things <hr> <br> --- class: inverse # <i class="fa-solid fa-cookie-bite" aria-hidden="true" style="color: gray;"></i> .link-blue[Taste test] <hr><br> <div class="quiz"> <h3>Which object name <u>is</u> allowed?</h3> <i>Hint: You can try the names in R</i> <p> <input type="radio" name="object"> <code>my favorite bot</code> <br> <input type="radio" name="object"> <code>my-bot</code> <br> <input type="radio" name="object"> <code>5bots</code> <br> <input type="radio" name="object"> <code>my_bot55</code> <br> <input type="radio" name="object"> <code>BOTS!!!</code> <br> </p> <details> <summary class="quiz_btn">Show solution</summary> <p style="margin-bottom: 0; margin-top: 4px;"> <i class="fa-solid fa-circle-check" style="color: #38b7b5;"></i> <code>my_bot55</code> </p> </details> </div> --- class: inverse, center, middle # <i class="fas fa-carrot" aria-hidden="true"></i> [Back to Videos](https://tidy-mn.github.io/R-camp-penguins/page/videos.html)