-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reproc eda clarify 2023, fix fig overplot issues
- Loading branch information
Showing
10 changed files
with
31 additions
and
24 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
title: "Exploratory data analysis" | ||
title: "Exploratory analysis: 2023 data" | ||
author: | ||
- name: Marcus Beck, <[email protected]>, Sheila Scolaro, <[email protected]> | ||
institute: "Tampa Bay Estuary Program" | ||
|
@@ -154,7 +154,7 @@ All data for the current project can be viewed in the same plot that shows the i | |
|
||
```{r} | ||
#| fig-width: 8 | ||
#| fig-height: 5 | ||
#| fig-height: 6 | ||
toplo <- dat %>% | ||
mutate( | ||
tempmed = median(tempc, na.rm = T), | ||
|
@@ -169,7 +169,8 @@ ggplot(toplo, aes(x = stratum, y = tempc)) + | |
theme( | ||
panel.grid.minor = element_blank(), | ||
panel.grid.major.x = element_blank(), | ||
strip.background = element_blank() | ||
strip.background = element_blank(), | ||
axis.text.x = element_text(angle = 45, hjust = 1) | ||
) + | ||
labs( | ||
x = NULL, | ||
|
@@ -184,7 +185,7 @@ Additionally, a comparison of the median hourly temperatures for the data summar | |
|
||
```{r} | ||
#| fig-width: 8 | ||
#| fig-height: 5 | ||
#| fig-height: 6 | ||
toplo <- dat %>% | ||
summarise( | ||
tempc = median(tempc, na.rm = T), | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.