Creating a table graph in R using a graph

I am trying to create a toolbar using the plotly API. Is there a way to build a data table with graphical use of R that I can combine with a panel. I see a table parameter in the python API https://plot.ly/python/table/ but the same difficulty finding in R

+5
source share
1 answer

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

+1
source

All Articles