Category: Uncategorized
-
Reflection #10
My group for the final project is Katie, Chris, and myself. For our final project we want to take a look at a data associated with Bates athletics. Specifically, one topic we are looking to dive into is attendance of different sporting events. We will be using the Bates Athletics website to collect attendance data.…
-
Reflection #8
In order to conduct a chi-square analysis one needs to run a chi-square test. In R the way to run a chi-square test is using the chi-square function, chisq.test( , ). This function will run a chi-squared test between whatever two tables are chosen. In Lab #8 we ran a chi-squared test between ‘Household_value’ and…
-
Reflection #7
#subsets data by “Number.of.Bales” and stores in a new vector Bales <- data$Number.of.Bales #subsets data by “Total.Weight” and stores in a new vector Weight <- data$Total.Weight #creates a scatterplot of the relationship between the Number of Bales and the Total Weight. the plot() function is used to create the scatter plot below plot(Bales,Weight) The lines…
-
Reflection #6
So far I feel like I have learned a lot throughout this course in different areas. The main one would be coding and I feel like the weekly labs, collaboration with peers, and videos have helped jumpstart my understanding of programming R. At times the influx of information has been overwhelming but having more experienced…
-
Reflection #4
My partner and I chose to compare donations from people named ‘john’ with all the other people that made donations. To do this we created two different subsets from the donor data set. The first vector we created was made up of donations from people named ‘john’ and we appropriately named that vector ‘only_john_donation’. The…
-
Reflection #3
The image above is a histogram we created and the visualization I am providing from Lab 3. The visualization above is a histogram as previously stated and captioned in the key. The y-axis measures the frequency of bales occurring and the x-axis measures the weights of the bales. The mean(total_bales) is 490.710588235294 and median(total_bales) is…
-
Reflection #2
When looking at the cotton weight data I think there are multiple things to consider such as the author of the invoice sheet, what company or person the financial statement belongs to, how the price of cotton was determined at the time of the financial statement’s creation, who the customers of the cotton are, who…
-
Reflection #1
My experience with code is pretty limited prior to this course. I took ECON Statistics my sophomore year during the module system and used STATA extensively but I honestly don’t remember that much. Over the summer I had a brief stint participating in a mySQL bootcamp course but I didn’t finish it. In my first…