sdey16
02 Septebmer 2018
Create a web page presentation using R Markdown that features a plot created with Plotly. Host your webpage on either GitHub Pages, RPubs, or NeoCities. Your webpage must contain the date that you created the document, and it must contain a plot created with Plotly. We would love to see you show off your creativity!
Creation Indian state wise population graph as counted on cencus 2011. help URL : https://en.wikipedia.org/wiki/List_of_states_and_union_territories_of_India_by_population
library(plotly)
statedata <- read.csv("indiastatesPopulation.csv")
statename <- statedata[,1]
population <- statedata[,2]
p = plot_ly(x = statename, y = population, mode = "markars")