-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist_abbreviations.qmd
More file actions
49 lines (44 loc) · 1.34 KB
/
list_abbreviations.qmd
File metadata and controls
49 lines (44 loc) · 1.34 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
# List of Abbreviations {.unnumbered}
```{r}
#| echo: false
#| message: false
#| warning: false
library(dplyr)
library(tibble)
library(gt)
tribble(
~"Abbreviation", ~"Full phrase ",
"GPP" , "Gross Primary Production",
"EC", "Eddy Covariance",
"VI", "Vegetation Index",
"LUE", "Light Use Efficiency",
"MODIS", "Moderate Resolution Imaging Spectroradiometer",
"APAR", "Absorbed Photosynthetically Active Radiation",
"PAR", "Photosynthetically Active Radiation",
"fAPAR", "fraction of Photosynthetically Active Radiation",
"LAI", "Leaf Area Index",
"EVI", "Enhanced Vegetation Index",
"NDVI", "Normalized Difference Vegetation Index",
"NIRv", "Near-Infrared Reflectance Index",
"DT", "Day Time method",
"RECO", "Ecosystem Respiration",
"NEE", "Net Ecosystem Exchange",
"GEE", "Google Earth Engine",
"GAM", "Generalized Additive Model",
"LM", "Linear Model",
"RMSE", "root mean square error",
"AIC", "Akaike Information Criterion",
"BIC", "Bayesian Information Criterion",
"NIR", "Near Infrared",
"CCI", "Chlorophyll/Carotenoid Index",
"CRI", "Chlorophyll Index Red",
"SIF", "Solar-Induced Fluorescence",
"EO", "Earth Observation",
"SWIR", "Short wave infrared",
"QA", "Quality Assurance",
"QC", "Quality Control"
) %>%
arrange(Abbreviation) %>%
gt() %>%
tab_options(column_labels.hidden = TRUE)
```