Skip to content
Resizing R plots
Data frameas
df
variable
SELECT funding, valuation, company FROM funding INNER JOIN companies USING(company_id)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)