Box Plot - Daily Gap

boxplot(MDS~thedate,data=Sensors_daily)

plotly Box Plot - Daily Gap

library(plotly)
plot_ly(Sensors_daily, y = MDS, color = thedate, type = "box")


Box Plot - Growth

boxplot(Growth~thedate,data=Sensors_daily)


plotly Box Plot - Growth

plot_ly(Sensors_daily, y = Growth, color = thedate, type = "box")