Plot normal, left and right skewed distribution in R

前端 未结 3 1642
一个人的身影
一个人的身影 2021-01-30 21:47

I want to create 3 plots for illustration purposes: - normal distribution - right skewed distribution - left skewed distribution

This should be an easy task, but I fo

3条回答
  •  悲哀的现实
    2021-01-30 22:23

    just use fGarch package and these functions:

    dsnorm(x, mean = 0, sd = 1, xi = 1.5, log = FALSE)
    psnorm(q, mean = 0, sd = 1, xi = 1.5)
    qsnorm(p, mean = 0, sd = 1, xi = 1.5)
    rsnorm(n, mean = 0, sd = 1, xi = 1.5)
    

    ** mean, sd, xi location parameter mean, scale parameter sd, skewness parameter xi. Examples

    ## snorm -
       # Ranbdom Numbers:
       par(mfrow = c(2, 2))
       set.seed(1953)
       r = rsnorm(n = 1000)
       plot(r, type = "l", main = "snorm", col = "steelblue")
    
       # Plot empirical density and compare with true density:
       hist(r, n = 25, probability = TRUE, border = "white", col = "steelblue")
       box()
       x = seq(min(r), max(r), length = 201)
       lines(x, dsnorm(x), lwd = 2)
    
       # Plot df and compare with true df:
       plot(sort(r), (1:1000/1000), main = "Probability", col = "steelblue",
         ylab = "Probability")
       lines(x, psnorm(x), lwd = 2)
    
       # Compute quantiles:
       round(qsnorm(psnorm(q = seq(-1, 5, by = 1))), digits = 6)
    

提交回复
热议问题