01 Random Variables: Graphical Tools Flashcards
What do you need to do first when drawing a boxplot?
sort the data(vector)
Which information do you need to draw a boxplot?
1) the qth quantiles (2,3,4)
2) the mean
3) the outside bars for outliers
How do you calculate the qth quantile?
1) sorting the data
2) find X(qn) = datapoint x at the qth position of n (usually 0.25, 0.5, 0.75)
How do you calculate the mean?
sum of all datapoints divided by the number of datapoints
How do you calculate the outside bars?
x₍₀.₇₅₎ + 1.5 ( x₍₀.₇₅₎ - x₍₀.₂₅₎ )
x₍₀.₂₅₎ - 1.5 ( x₍₀.₇₅₎ - x₍₀.₂₅₎ )
Which two indicators are essential to calculate & draw histograms?
origin x₀
binwidth h
Which two indicators are essential to calculate & draw Kernel densities?
binwidth h
Kernel function K(•)
Which Kernel functions are there?
Uniform
Triangle
Epanechnikov
Gaussian
What scatterplots are there?
downward and upward sloping
What are parallel coordinates plots?
you scale all p variables of interest into [ 0, 1 ]
What are Chernoff-Flury faces?
high dimensional objects - each variable is assigned to a face element (eye, pupil, eyebrow…)
What are Andrews’ Curves?
each row of a matrix gets transformed to a curve fuction -> can observe differences/tendencies
What is important to check with the Andrews’ Curves?
Whether p (= number of variables) is odd or even
What is p in a data matrix?
the number of columns = the number of variables
What is n in a data matrix?
the number of rows = the number of observations