代做STAT 311 Writeup Assignment 0代做R语言
- 首页 >> Python编程Writeup Assignment 0
Please complete the following:
Address any questions or code below.
Compile the document into a PDF file.
The PDF file must be multiple pages- if your file is a single page, try compiling to an HTML, opening in your browser, and printing the page to a PDF.
Submit to Gradescope.
Paginate individual questions correctly, selecting which pages each question pertains to. or your assignment will not be graded and will require resubmission.
HW0 Programming Assignment
For writeup assignments that build upon the programming assignments, you will need to execute some of the homework code within the RMarkdown file. Copy all of your code from Assignment O into the block below.
#Paste your entire HWO Programming assignment code here
Including Graphics
When importing data for writeup assignments you are free to change code that loads data, such as changingl the file name or folder address. The code below imports a dataset about the number of rental bikes in usel each hour for a random set of hours over a two year span. The data is saved in the data frame. bikes, underl the variable name bikes$rentals. Using the function hist(...), create a histogram of the bike rentals. Utilizing ?hist, find the optional function arguments to do the following:
Plot a histogram of the data
Plot a density, rather than frequency histogram
Change the main title of the plot to something more appropriate
Change the x axis of the plot to something more informative
bikes<-read.csv("BikeRentals.csv")