generated from geco-bern/R_book_template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from stineb/main
Revisions in chapters 4 and 5
- Loading branch information
Showing
18 changed files
with
1,291 additions
and
67 deletions.
There are no files selected for viewing
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,7 +1,7 @@ | ||
# Land in the Earth System I | ||
|
||
Introducing global patterns, processes, and underlying principles for how climate shapes the terrestrial biosphere and how land feeds back to Earth system dynamics. | ||
|
||
This contains the book that serves as lecture notes for the course *Land in the Earth System 1* and *2*. | ||
|
||
Author: Benjamin Stocker, Institute of Geography, University of Bern. | ||
# Land in the Earth System | ||
|
||
Introducing global patterns, processes, and underlying principles for how climate shapes the terrestrial biosphere and how land feeds back to Earth system dynamics. | ||
|
||
This contains the book that serves as lecture notes for the course *Land in the Earth System 1* and *2*. | ||
|
||
Author: Benjamin Stocker, Institute of Geography, University of Bern. |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
library(tidyverse) | ||
|
||
# load Kumarathunge et al. data | ||
df <- read_csv("~/data/aci-tglob_v1.0/ACi-TGlob_V1.0.csv") | ||
|
||
df |> | ||
filter(Dataset == "Tundra USA-AK") |> | ||
group_by(Species) |> | ||
summarise(n = n()) | ||
|
||
# spatial - adaptation | ||
df |> | ||
filter( | ||
Dataset == "Tundra USA-AK" & | ||
Ci > 270 & Ci < 280 | ||
) |> | ||
ggplot( | ||
aes( | ||
x = Tleaf, | ||
y = Photo | ||
) | ||
) + | ||
geom_point() | ||
|
||
# seasonal - acclimation | ||
df |> | ||
filter( | ||
Dataset == "Maritime Pine, France" & | ||
Ci > 250 & Ci < 300 | ||
) |> | ||
ggplot( | ||
aes( | ||
x = Tleaf, | ||
y = Photo | ||
) | ||
) + | ||
geom_point() | ||
|
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
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
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
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
Oops, something went wrong.