-
Notifications
You must be signed in to change notification settings - Fork 1
/
course-faq.qmd
31 lines (22 loc) · 2.98 KB
/
course-faq.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
title: "FAQ"
---
## How do I export my assignment PDF from RStudio to upload to Gradescope?
Go to your *Files* tab, check the box next to the file you want to download, then click on the blue gear icon on the Files tab to reveal the drop down menu, and select *Export*... If you have selected multiple files to export, RStudio will zip them up into a single zip file for you. If you've selected just a single file, it will only download that. The downloaded file will go to wherever files you download off the internet goes on your computer (usually your Downloads folder).
```{=html}
<iframe width="700" height="394" src="https://www.youtube.com/embed/cAHCMpPJx3k" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
```
## How can I submit my assignment to Gradescope?
The instructions for submitting your assignment to Gradescope can be found [here](https://help.gradescope.com/article/ccbpppziu9-student-submit-work#submitting_a_pdf). In a nutshell, you'll upload your PDF and them mark the page(s) where each question can be found. It's OK if a question spans multiple pages, just mark them all. It's also OK if a page includes multiple questions.
```{=html}
<iframe width="700" height="394" src="https://www.youtube.com/embed/u-pK4GzpId0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
```
## Can I use a local install of R and RStudio instead of using the RStudio containers?
The short answer is, I'd rather you didn't, to save yourself some headache. But, the long answer is, sure! But you will need to install a specific versions of R and RStudio for everything to work as expected. You will also need to install the R packages we're using as well as have Git installed on your computer. These are not extremely challenging things to get right, but they are not trivial either, particularly on certain operating systems. Myself and the TAs are always happy to provide help with any computational questions when you're working in the containers we have provided for you. If you're working on your local setup, we can't guarantee being able to resolve your issues, though we're happy to try.
If you want to take this path, here is what you need to do:
- Download and install R 4.1.2: <https://cran.r-project.org/>
- Download and install a daily build of RStudio: <https://dailies.rstudio.com/>
- Install Quarto CLI: <https://quarto.org/docs/getting-started/installation.html>
- Install Git: <https://happygitwithr.com/install-git.html>
- Install any necessary packages with `install.packages("___")`
And I'd like to reiterate again that successful installation of these software is **not** a learning goal of this course. So if any of this seems tedious or intimidating in any way, just use the computing environment we have set up for you. More on that [here](/computing-access.html).