0% found this document useful (0 votes)
20 views5 pages

Air Quality Data Analysis and Visualization

The document provides a summary of the air quality dataset, including statistical measures such as minimum, maximum, mean, and quartiles for variables like Ozone, Solar Radiation, Wind, Temperature, Month, and Day. It also displays the first and last few entries of the dataset, indicating the presence of missing values. Additionally, it outlines various data visualization techniques that can be applied to the dataset, such as bar plots, histograms, and scatter plots.

Uploaded by

badavej232
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views5 pages

Air Quality Data Analysis and Visualization

The document provides a summary of the air quality dataset, including statistical measures such as minimum, maximum, mean, and quartiles for variables like Ozone, Solar Radiation, Wind, Temperature, Month, and Day. It also displays the first and last few entries of the dataset, indicating the presence of missing values. Additionally, it outlines various data visualization techniques that can be applied to the dataset, such as bar plots, histograms, and scatter plots.

Uploaded by

badavej232
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

#DATA ANALYSIS

> summary(airquality)

Ozone Solar.R Wind Temp Month Day

Min. : 1.00 Min. : 7.0 Min. : 1.700 Min. :56.00 Min. :5.000 Min. : 1.0

1st Qu.: 18.00 1st Qu.:115.8 1st Qu.: 7.400 1st Qu.:72.00 1st Qu.:6.000 1st Qu.: 8.0

Median : 31.50 Median :205.0 Median : 9.700 Median :79.00 Median :7.000 Median :16.0

Mean : 42.13 Mean :185.9 Mean : 9.958 Mean :77.88 Mean :6.993 Mean :15.8

3rd Qu.: 63.25 3rd Qu.:258.8 3rd Qu.:11.500 3rd Qu.:85.00 3rd Qu.:8.000 3rd Qu.:23.0

Max. :168.00 Max. :334.0 Max. :20.700 Max. :97.00 Max. :9.000 Max. :31.0

NA's :37 NA's :7

>

> head(airquality)

Ozone Solar.R Wind Temp Month Day

1 41 190 7.4 67 5 1

2 36 118 8.0 72 5 2

3 12 149 12.6 74 5 3

4 18 313 11.5 62 5 4

5 NA NA 14.3 56 5 5

6 28 NA 14.9 66 5 6

>

> tail(airquality)

Ozone Solar.R Wind Temp Month Day

148 14 20 16.6 63 9 25

149 30 193 6.9 70 9 26

150 NA 145 13.2 77 9 27

151 14 191 14.3 75 9 28

152 18 131 8.0 76 9 29

153 20 223 11.5 68 9 30

>

> sapply(airquality, class)

Ozone Solar.R Wind Temp Month Day

"integer" "integer" "numeric" "integer" "integer" "integer"

>
#DATA VISUALIZATION
 Barplot

 Histogram
 Boxplot

 Multiple Boxplot
 Scatterplot

 HeatMap
 3D Cone Plot

You might also like