Critique Steps: Description: Describe where the visualization is from, and state who the author is Briefly explain the data set Describe the mappings (e.g., what is mapped to x, and y, and other...

1 answer below »

Critique Steps:



  • Description:

    • Describe where the visualization is from, and state who the author is

    • Briefly explain the data set

    • Describe the mappings (e.g., what is mapped to x, and y, and other elements in the visualization)



  • Evaluation:

    • Explain what elements you think work well in the visualization (e.g., data-to-ink ration, colors and background, gridlines, etc.) and why (e.g., plot is clear, colors are colorblind accessible, etc.)

    • Explain what elements you think could be improved on





Answered Same DaySep 17, 2021

Answer To: Critique Steps: Description: Describe where the visualization is from, and state who the author is...

Neha answered on Sep 18 2021
157 Votes
91421 - iris visualization/code.R
library('ggplot2')
library(readr)
options(repr.plot.width = 6,
repr.plot.height = 6)
Iris <- read.csv('Iris.csv')
class(Iris)
head(Iris)
summary(Iris)
ggplot(data=Iris,aes(x=SepalWidthCm, y=SepalLengthCm)) + geom_point() + theme_minimal()
ggplot(data=Iris,aes(x=SepalWidthCm, y=SepalLengthCm,color=Species)) + geom_point() + theme_minimal()
ggplot(data=Iris,aes(x=SepalWidthCm, y=SepalLengthCm,color=Species)) + geom_point() +geom_smooth() + theme_minimal()
ggplot(data=Iris,aes(x=SepalWidthCm, y=SepalLengthCm,color=Species)) + geom_point() +geom_smooth(se=FALSE)+
theme_minimal()
ggplot(data=Iris,aes(x=SepalLengthCm)) + geom_histogram() +theme_minimal()
91421 - iris...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here