I understand how to assess whether an exponential/normal distribution is suitable to model a piece of data when the parameters are given, i.e. finding the theoretical quantiles and plotting against the sample quantiles. However when the parameters aren't given e.g. for exponential, lambda is unknown then how would you find theoretical qunatiles, and the same for the normal distribution too?
2026-03-25 04:34:56.1774413296
Quantile-Quantile (QQ) Plots
589 Views Asked by user566482 https://math.techqa.club/user/user566482/detail At
1
There are 1 best solutions below
Related Questions in STATISTICS
- Given is $2$ dimensional random variable $(X,Y)$ with table. Determine the correlation between $X$ and $Y$
- Statistics based on empirical distribution
- Given $U,V \sim R(0,1)$. Determine covariance between $X = UV$ and $V$
- Fisher information of sufficient statistic
- Solving Equation with Euler's Number
- derive the expectation of exponential function $e^{-\left\Vert \mathbf{x} - V\mathbf{x}+\mathbf{a}\right\Vert^2}$ or its upper bound
- Determine the marginal distributions of $(T_1, T_2)$
- KL divergence between two multivariate Bernoulli distribution
- Given random variables $(T_1,T_2)$. Show that $T_1$ and $T_2$ are independent and exponentially distributed if..
- Probability of tossing marbles,covariance
Related Questions in DATA-ANALYSIS
- Calculating an average of other averages
- When extrapolating for projections, how do you know which function-form to use?
- Log base e versus log base 10 for semilog plot, how do I recognize the type of curve my data fits?
- Book Recommendation for Analyzing Experimental Results
- MLE of non-numerical variables?
- How to tell when a data series is a normal distribution
- Counting occurrences of elements from data stream
- Based on the coinmarket cap api, how do they calculate the bitcoin percent change
- Statistical analysis of study with categorical and numerical variables
- If I divide one column of a matrix by another, do I get new "information"?
Related Questions in QUANTILE
- Explicitly representing a random variable such as $ X(\omega):=\frac{1}{\lambda} \ln \frac{1}{1-\omega}$, which is exponential
- Where can I find examples of Skorokhod representations?
- Quantile function for binomial distribution?
- Asymptotic behaviour of the process $U_n=U_{n-1}+s(U_{n-1})X_n$, where $X_n$ is iid
- Inequality involving quantiles
- Uniform transformation of a quantile
- Implications on the cdf of $\epsilon_1-\epsilon_2$ of conditions on the cdf's of $\epsilon_1, \epsilon_2$
- Pushforward-change-of-variable with quantile function
- Choosing an interval of the CDF to find each quartile
- Prove that $\min_{\mu}\sum_{i=1}^n|y_i-\mu|=\text{median}\{y_1,\cdots,y_n\}$
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
The short answer is that you get the theoretical quantiles from the standard normal distribution $(\mu =0, \sigma=1)$ or the standard exponential distribution $(\lambda = 1).$
The fundamental idea is that you're judging whether the Q-Q plot is essentially linear. You don't need to know the equation of the line in order to judge linearity. However, if you do know the parameter(s), then you can know the equation of the line. And by estimating parameter(s) you may be able to get a good approximation of the equation.
Default Q-Q plots in R put the theoretical quantiles on the horizontal axis and the quantiles of the data on the vertical axis. In North America, perhaps it is more common to put the quantiles of the data on the horizontal axis; in the graphical
qqnormyou can use the parameterdatax=Tto do this. For easier comparison with a plot of the empirical CDF, I will put data on the horizontal axis in my examples.The ECDF of a sample puts probability $1/n$ at each data value; if $k$ observations are tied at a single value, then the probability of that value is $k/n.$ For sufficiently large samples the ECDF of the sample closely matches the CDF of the population distribution.
Normal example. Generate a sample of size $n = 1000$ and make a normal Q-Q plot.
In the ECDF plot at left, the black ECDF values nearly match the dotted green CDF values for $\mathsf{Norm}(\mu=100,\sigma=15).$ In the Q-Q plot at right, the vertical scale has been distorted so that the CDF becomes a straight line $y = -\frac{\mu}{\sigma} + \frac{1}{\sigma}x.$
Even when data are precisely from a particular distribution, you should not expect all data points at the extremes of the sample to fall really near to the straight line corresponding to that distribution.
Exponential example. R has no built-in function for making exponential Q-Q plots, but making them is not difficult. I am using a method suggested by one of the answers on our stat site. The data are from an exponential distribution with rate $\lambda = 3$ (thus mean $\mu = 1/3).$
Again here the ECDF very nearly matches the exponential CDF and the the line $y = \lambda x$ is a distorted version of the CDF.
Note: On request, R will make approximate lines through Q-Q plots, usually based on the first and third quartiles of the data and the first and third quartiles of the standard theoretical distribution. These are usually good enough to judge whether the points are "approximately linear". (For normal QQ plots.)