-
Notifications
You must be signed in to change notification settings - Fork 0
/
-First-Blog.Rmd
63 lines (31 loc) · 861 Bytes
/
-First-Blog.Rmd
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
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: false
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.
```{r}
hist(AirPassengers,
main="Histogram for Air Passengers",
xlab="Passengers",
border="red",
col="green",
xlim=c(100,700),
las=1,
breaks=5)
```
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```