Switched to iris data from R datasets

This commit is contained in:
Krishna Choudhary 2020-06-19 15:35:45 -07:00
parent ea3fea229f
commit d3eb7b8f4b
3 changed files with 5 additions and 3 deletions

View file

@ -1,5 +1,5 @@
#Read data in.
dat <- read.table("iris.csv", header= TRUE, sep = ",")
dat <- iris
#Plot using 'base' graphics.
plot(x = dat$Sepal.Length, y = dat$Petal.Length,

View file

@ -51,3 +51,5 @@ server <- function(input, output) {
}
shinyApp(ui, server)