Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating table graph in R with plotly

Tags:

r

plotly

I'm trying to create a dashboard using plotly API. Is there a way to plot a data table with plotly using R which I can merge with the dashboard. I can see a table option in python API https://plot.ly/python/table/ but the same feature is tough to find in R

like image 971
goldilocked3149 Avatar asked Apr 27 '16 06:04

goldilocked3149


1 Answers

I was having issues with the type='table' using Plotly in R. Installing the ropensci/plotly package version 4.7.1.9000 from github fixed the issue for me. plot_ly(df, type="table")

like image 195
sectechguy Avatar answered Sep 19 '22 08:09

sectechguy