-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.Rmd
More file actions
61 lines (42 loc) · 3.5 KB
/
index.Rmd
File metadata and controls
61 lines (42 loc) · 3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
title: "Project MOSAIC"
description: |
An NSF-funded project supporting Mathematics, Statistics, and Computation
site: distill::distill_website
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(mosaic)
library(ggformula)
library(mosaicCalc)
theme_set(theme_bw())
```
## Project MOSAIC
**Project MOSAIC** is a community of educators working to develop a new way to introduce mathematics, statistics, computation and modeling to students in colleges and universities.
From 2009 to 2016, Project MOSAIC was supported by a grant from the US National Science Foundation (NSF DUE-0920350). The core resources developed during that time continue to be maintained and expanded. New MOSAIC resources such as a calculus textbook and the Little Apps are being added and improved in the 2020s.
-----
-----
## MOSAIC resources
- NEW! An advanced draft is now available of the new [*Lessons in Statistical Thinking*](https://dtkaplan.github.io/Lessons-in-statistical-thinking/) introductory text and the associated `{LSTbook}` R package. This is a complete rethinking of introductory statistics that places it in the context of data science, modeling, and causal inference.
- The `{mosaic}` package for R which supports teaching stats using a expressive, compact, and consistent formula syntax. This minimizes start up costs for students and enables students to calculate descriptive statistics, create statistical graphics, and construct statistical graphics. `{mosaic}` is one of three main syntaxes for teaching and doing statistics using R. (For a comparison, see Prof. Amelia McNamara's [video presentation](https://www.youtube.com/watch?v=aq5SrjXZDy4).)
Hundreds of instructors have found `{mosaic}` helpful in teaching
introductory statistics. Example:
```{r echo=TRUE, indent = " "}
Stats <- df_stats(births ~ wday, data = Births2015,
center = mean, conf = ci.mean(0.95))
Stats
```
- The `{ggformula}` package, which enables ggplot2 graphics to be generated
using the formula syntax. Example:
```{r echo=TRUE, indent = " "}
gf_jitter(births ~ wday, data = Births2015, alpha = 0.5) %>%
gf_errorbar(conf_lower + conf_upper ~ wday, data = Stats,
color = ~ wday, inherit=FALSE)
```
- The **LittleApps** developed with the [MAA StatPREP](www.statprep.org) project. These are data- and graphics-centric tools for teaching introductory statistics without coding. See [the LittleApps site](http://www.statprep.org/LittleAppSite/) for more information.
- A complete [**MOSAIC Calculus**](http://ProjectMOSAIC.github.io/MOSAIC-Calculus) course including an online, freely accessible textbook, exercises, and symbolic software in R, all following the Project MOSAIC philosophy of building courses around *modeling*, using *data*, and integrating *computing* directly into the subject matter.
- Online, freely accessible texts for teaching statistics that are coordinated with the `{mosaic}` R package.
- [*Statistical Modeling: A Fresh Approach*](https://dtkaplan.github.io/SM2-bookdown/) by Daniel Kaplan
- [End-of-chapter exercises for *Statistical Modeling*](go/SM2-Problems.pdf). Answers are available to instructors upon request.
- [*Statistical Modeling: Computational Technique*](go/SM2-technique/index.html) by Daniel Kaplan and Frank Shaw. This booklet introduces the R language commands for the methods introduced in *A Fresh Approach*.
- [*A Student's Guide to R*](https://github.com/ProjectMOSAIC/LittleBooks/raw/master/StudentGuide/MOSAIC-StudentGuide.pdf)