how would you build a scatter-plot using plotly?
Answer / Shubham Goel
```Rnnlibrary(plotly) n# create scatter plot datanscatter_data <- data.frame(x = c(1, 2, 3, 4), y = c(5, 6, 7, 8)) n# create the plotnplot_ly(scatter_data, x = ~x, y = ~y) n```
| Is This Answer Correct ? | 0 Yes | 0 No |
How many types of functions are there in R string manipulation?
Explain how R programming applied to the real world?
Explain how you can start the r commander gui?
Write a function in R language to replace the missing value in a vector with the mean of that vector?
What is transpose?
Enlist some of the functions that r provides?
What is the function in r?
Describe grep() in r string manipulation?
In r how missing values are represented?
How many types of data types are provided by R?
How r handles missing values?
How would you fit a linear model over a scatter-plot?