notes

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 3ec2665d6a9d70d9660cb9628d31f0ef74280285
parent fa73349d141d55e6a0bfdd66d5a9a36ce43628de
Author: Andrew <andrewlaack1@gmail.com>
Date:   Fri,  7 Jun 2024 01:18:03 -0500

Completed notes for the day on stats - there was a bunch of crap I don't care about

Diffstat:
ABoxplots.md | 10++++++++++
ACrosstabulation.md | 18++++++++++++++++++
AMosaicPlot.md | 8++++++++
MStatistics.md | 3+++
4 files changed, 39 insertions(+), 0 deletions(-)

diff --git a/Boxplots.md b/Boxplots.md @@ -0,0 +1,10 @@ +:stats: +# Boxplots + +Stats D4 + +## Notes + +**Definition:** A boxplot is a plot that shows the distribution of quartiles. + +These plots show the IQR (interquartile range - Q2 and Q3) filled in and then lines out to the Q1 and Q4 points. These also have dots for some outliers. This is also known as a box and whisker plot. diff --git a/Crosstabulation.md b/Crosstabulation.md @@ -0,0 +1,18 @@ +:stats: +# Crosstabulation + +Stats D4 + +## Notes + +**Definition:** Crosstabulation in stats is a way to display three dimensional information. Across the top and side you have some classes and then in the table itself we have the information of the cross-sectional group. + +ex: + +Admittance Male Female + + Admitted 1198 557 + Rejected 1493 1278 + + +This data can be shown using a [[MosaicPlot.md]] for graphical viewing with sized boxes. diff --git a/MosaicPlot.md b/MosaicPlot.md @@ -0,0 +1,8 @@ +:stats: +# Mosaic Plot + +Stats D4 + +## Notes + +**Definition:** A mosaic plot is a plot that shows cross tabulated information in a graphical way where each box is sized according to the actual values of the classes associated with the given position. diff --git a/Statistics.md b/Statistics.md @@ -29,3 +29,6 @@ Links to Stats Notes [[Bandwidth.md]] [[Oversmooothing.md]] [[Undersmoothing.md]] +[[Boxplots.md]] +[[Crosstabulation.md]] +[[MosaicPlot.md]]