Workspace

Resizing R plots

0
Beta
Spinner
Unknown integration
Data frameavailable as
df
variable
SELECT funding, valuation, company FROM funding INNER JOIN companies USING(company_id)
This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.
plot(df$funding, df$valuation)
options(repr.plot.width=10, repr.plot.height=6, repr.plot.res = 150)
plot(df$funding, df$valuation)
suppressMessages(suppressPackageStartupMessages(library(plotly)))
plot_ly(data = df, x = ~funding, y = ~valuation, type='scatter', mode='markers', height=600, width=1000)
  • AI Chat
  • Code