Publications by Amanda Casey
James Suleiman's Lab 1
Lab 1 Author James Suleiman 1 Overview To complete this lab, you will need: access to the shared posit.cloud space for this course (link in Brightspace) a quarto.pub account (free) GitHub Copilot account approved and enabled in posit.cloud We will be using the gapminder data for this lab so let’s start by loading the tidyverse family of pac...
3765 sym R (5329 sym/9 pcs) 6 img 1 tbl
sample
sample My report Here is an opening paragraph. numbered item 1 numbered item 2 library(tidyverse) library(gapminder) gapminder |> filter(year == 2007) |> ggplot(aes(x = gdpPercap, y = lifeExp)) + geom_point(aes(color = continent)) + labs(title = "Life Expectancy and GDP per Capita in 2007", x = "GDP per Capita", y = "Life E...
103 sym 1 img
Lab 01
Lab 1 1 Overview To complete this lab, you will need: access to the shared posit.cloud space for this course (link in Brightspace) a quarto.pub account (free) GitHub Copilot account approved and enabled in posit.cloud We will be using the gapminder data for this lab so let’s start by loading the tidyverse family of packages and gapminder. Sinc...
3341 sym R (4902 sym/10 pcs) 3 img 1 tbl
Sample
sample Author me Published February 23, 2024 Quarto Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see https://quarto.org. Running Code When you click the Render button a document will be generated that includes both content and the output of embedded code. You can embed ...
530 sym
Amanda's Assignment 4
Assignment 4 Overview This assignemnt we were tasked with taking down data from Twitter and to do something cool with it. I decided to look at data on #turtle, because I love turtles and wanted to see what I could tell from this assignment about this topic on Twitter. First off, I set up the the developer connection for Twitter as we learned and...
4530 sym R (22326 sym/40 pcs) 3 img
Amanda's Assignment 4
Assignment 4 Overview This assignemnt we were tasked with taking down data from Twitter and to do something cool with it. I decided to look at data on #turtle, because I love turtles and wanted to see what I could tell from this assignment about this topic on Twitter. First off, I set up the the developer connection for Twitter as we learned and...
4530 sym R (22843 sym/41 pcs) 3 img
test
Introduction In the late eighteenth century, the Scottish engineer William Playfair invented the pie chart, bar chart, line graph, and other graphics to display economic facts. Until then, pictures and graphics were somewhat exclusive to cartography (i.e., map making). Over a century later, Willard Cope Brinton wrote Graphic Presentation and dedi...
11434 sym 25 img 1 tbl
Assignment 1
This assignment is not really a coding assignment. The purpose is mostly to get you used to creating reports in R as you’ll need to do this for future assignments. We will cover reporting in more depth later in the course. Instructions In the YAML header, change the author name to your name and the date to the current date. (10 points) In the...
863 sym R (369 sym/2 pcs)
Nason A2
library(tidyverse) library(readr) library(dplyr) library(ggplot2) top_albums <- read_csv("http://jamessuleiman.com/teaching/datasets/Rolling_Stones_Top_500_Albums.csv", locale = locale(encoding = "ISO-8859-2", asciify = TRUE)) newset <- top_albums %>% select(Number, Genre) newset %>%filter(Number <= 20)%>% ggplot(aes(x= Genre))+ geom_bar(...
207 sym R (454 sym/5 pcs) 1 img