Created
November 8, 2015 00:41
-
-
Save Teino1978-Corp/48696d703d5cb907600f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # qqnorm() assumes comparison to normal distribution | |
| qqnorm(df_salary$amount) | |
| # qqline() plots 45 degres lines | |
| qqline(df_salary$amount, col = 2) | |
| # qqplot() is more flexible. | |
| # 1st argument is the simulated distribution | |
| qqplot(df_ideal$amount , df_salary$amount) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment