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 |
Name some functions available in “dplyr” package.
Explain how to read data or a matrix from a file?
What is correlation? How would you measure correlation in r?
Explain how to create a function in arguments using apply() in r?
What is r vector?
How would you find out the mean of one column with respect to another?
Name the functions which helps in importing data from other applications in R?
What is recursion in r?
Explain the concept of principal component analysis?
What is bootstrapping in r?
How to create the s3 class?
What is the rattle package in r?