Skip to content

Latest commit

 

History

History
67 lines (32 loc) · 1.64 KB

File metadata and controls

67 lines (32 loc) · 1.64 KB
title First Blog Post
description DACSS 601 HomeWork 1
author
name
Cynthia Hester
date 09/27/2021
categories
homework 1
DACSS 601
cynthia hester
output
distill::distill_article
self-contained
draft true

This is my first attempt at a blog post in R,whew!

I am going to import data from the Air Passengers data set which is included in R. It is comprised of data from the monthly totals of international airline passengers, 1949 to 1960. I am going visually express the data on a histogram plot which is a strength of R.

hist(AirPassengers, 
     main="Histogram for Air Passengers", 
     xlab="Passengers", 
     border="red", 
     col="green",
     xlim=c(100,700),
     las=1, 
     breaks=5)