To produce a plot from the ploty package in a RMarkdown file which has a date in it less than two months old.
Today’s data is 16th of Feb 2018 (02-16-2018)
Plot below shows a Box Plot for five tests across three people.
Treat the actual values themselves as fictious, data presented is for demo purposes only.
I have saved a csv on my Github account to use as a data source.
df<-import("https://raw.githubusercontent.com/lesliebogdan/Developing-data-products/master/Week%203%20Assignment.csv")
plot_ly(df,x=df$Score,color=df$Name,type = "box")