开始使用免费开始使用

Plotting and testing of skewed-densities

To test whether a dataset follows a skew distribution, you can visualize the scatterplot and contour plot to look for non-ellipsoidal contours. You can also test whether the data follow multivariate normality.

In this exercise, you will use the skew-normal sample generated in the previous exercise and a new set of skew-\(t\) samples, generated using the same location and scale parameters, to test multivariate normality.

本练习是课程的一部分

Multivariate Probability Distributions in R

查看课程

交互式实操练习

通过完成这段示例代码来试试这个练习。

# Contour plot for skew-normal sample
___(___, aes(x = x, y = y)) + geom_point() + geom_density_2d() 
编辑并运行代码