-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.Rmd
55 lines (34 loc) · 1.54 KB
/
index.Rmd
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
---
title: CMSC320 Final Project
output:
html_document:
toc: yes
---
**written by Dinakar Chappa, Prashant Krishnan and Omkar Konaraddi**
In this tutorial, we'll glean rich insights from the [Pokedex](https://pokedex.org/), a database of all Pokemon and their attributes, using various techniques and tools from CMSC320.
```{r child = 'scraping.Rmd'}
```
# Testing Similarity across Generations with the ANOVA/F-test
Are Pokemon across all generations similar to one another? Do newer generations have better stats than previous generations? It's intuitive to think that newer Pokemon would be better than older Pokemon but we'll test our intuition using an ANOVA/F hypothesis test.
We can treat the Pokedex as a sample of the population because the in-game Pokemon have some variation in their stats (due to items they hold, what level they are at, where they are caught, how many battles they have won, etc.) and most Pokemon are not unique in the Pokemon games (i.e. you can catch multiple Pokemon of the same Pokedex name and number).
```{r child = 'anova_generation_similarity.Rmd'}
```
```{r child = 'anova_generation_similarity2.Rmd'}
```
```{r child = 'anova_generation_similarity3.Rmd'}
```
# Linear Regression
```{r child = 'linear_regression_BMI_Base.Rmd'}
```
```{r child = 'linear_regression_BMI_capturerate.Rmd'}
```
# The Optimal Team
```{r child = 'PickOptimalTeam.Rmd'}
```
# Random Forest
```{r child = 'random_forest_type1.Rmd'}
```
```{r child = 'random_forest_type2.Rmd'}
```
```{r child = 'random_forest_legendaries.Rmd'}
```