Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3794858
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T12:59:37+00:00 2026-05-19T12:59:37+00:00

Is it possible to generate distributions in R for which the Mean, SD, skew

  • 0

Is it possible to generate distributions in R for which the Mean, SD, skew and kurtosis are known? So far it appears the best route would be to create random numbers and transform them accordingly.
If there is a package tailored to generating specific distributions which could be adapted, I have not yet found it.
Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T12:59:38+00:00Added an answer on May 19, 2026 at 12:59 pm

    There is a Johnson distribution in the SuppDists package. Johnson will give you a distribution that matches either moments or quantiles. Others comments are correct that 4 moments does not a distribution make. But Johnson will certainly try.

    Here’s an example of fitting a Johnson to some sample data:

    require(SuppDists)
    
    ## make a weird dist with Kurtosis and Skew
    a <- rnorm( 5000, 0, 2 )
    b <- rnorm( 1000, -2, 4 )
    c <- rnorm( 3000,  4, 4 )
    babyGotKurtosis <- c( a, b, c )
    hist( babyGotKurtosis , freq=FALSE)
    
    ## Fit a Johnson distribution to the data
    ## TODO: Insert Johnson joke here
    parms<-JohnsonFit(babyGotKurtosis, moment="find")
    
    ## Print out the parameters 
    sJohnson(parms)
    
    ## add the Johnson function to the histogram
    plot(function(x)dJohnson(x,parms), -20, 20, add=TRUE, col="red")
    

    The final plot looks like this:

    enter image description here

    You can see a bit of the issue that others point out about how 4 moments do not fully capture a distribution.

    Good luck!

    EDIT
    As Hadley pointed out in the comments, the Johnson fit looks off. I did a quick test and fit the Johnson distribution using moment="quant" which fits the Johnson distribution using 5 quantiles instead of the 4 moments. The results look much better:

    parms<-JohnsonFit(babyGotKurtosis, moment="quant")
    plot(function(x)dJohnson(x,parms), -20, 20, add=TRUE, col="red")
    

    Which produces the following:

    enter image description here

    Anyone have any ideas why Johnson seems biased when fit using moments?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to generate the same random number in python as in java
Is it possible to generate a random number between 2 doubles? Example: public double
How to create a function, which on every call generates a random integer number?
Possible Duplicates: Generate Random numbers uniformly over entire range In C, how do I
Possible Duplicate: Generate unique random numbers in Java I am creating a lottery app
Is it possible to generate random numbers through physical process simulation? If I simulate
If I wanted to generate a random number for all possible numbers an Int32
Possible Duplicate: Generate Random numbers uniformly over entire range I want to generate the
Is it possible to generate a text file, the content of which is the
While it is possible to generate PowerPoint presentations automatically using Office Automation , this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.