What's the equivalent to Data Pane in R?

Hello!

I'd like to host an interactive chart that I made with plotly online.

I know for Python I can use DataPane to do it really easily. I'd like to host a single chart, so that I can upload it to a Notion doc and keep the interactivity. I can do that easily with DataPane. I know Shiny Apps lets me deploy shiny apps.

Where can I go to simply host an interactive ggplotly() chart, without making it into a shiny app?

Here is plotly in a shiny app, its not particularly difficult and doesnt add hardly any code

library(shiny)
library(plotly)

ui <- fluidPage(
  plotlyOutput("myplot")
)

server <- function(input, output, session) {
  output$myplot <- renderPlotly({
    plot_ly(
      data = iris,
      x = ~Sepal.Length,
      y = ~Petal.Length
    )
  })
}

shinyApp(ui, server)

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.