Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Soil Exploration activity] deleting the csv file of the soil data #29

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions 09-data_exploration.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,7 @@ This activity will teach you how to use the AnVIL platform to:

We will use the `BioDIGS` package to retrieve the data. We first need to install the package from where it is stored on GitHub.

```{r, message = FALSE, warning = FALSE, echo = FALSE}

library(readr)
soil.values <- read_csv(file = "soil_testing_data.csv")
```


```{r, message = FALSE, warning = FALSE, eval=F}
```{r, message = FALSE, warning = FALSE}

devtools::install_github("fhdsl/BioDIGSData")
```
Expand All @@ -48,7 +41,7 @@ Once you've installed the package, we can load the library and assign the soil t

dataset_object_name <- stored_BioDIGS_dataset

```{r, message = FALSE, warning = FALSE, eval=F}
```{r, message = FALSE, warning = FALSE}

library(BioDIGSData)

Expand Down Expand Up @@ -205,7 +198,7 @@ soil.values.clean %>%
dplyr::summarize(Mean = mean(As_EPA3051))
```

Now we know that the mean arsenic concentration might be different for each region, and appears higher for the Baltimore City samples than the Montgomery County samples.
Now we know that the mean arsenic concentration might be different for each region. In particular, the mean arsenic concentration appears higher for the Baltimore City samples than the Montgomery County samples.

::: {.reflection}
QUESTIONS:
Expand Down
Loading
Loading