plot_heatmap: plot_heatmap

Description Usage Arguments Value Examples

Description

Graphs a heatmap of values stored in a matrix, such as produced by daily_response function.

Usage

1
plot_heatmap(result_daily_response, reference_window = "start")

Arguments

result_daily_response

a list with three objects as produced by daily_response function

reference_window

character string, the reference_window argument describes, how each calculation is referred. There are three different options: 'start' (default), 'end' and 'middle'. If the reference_window argument is set to 'start', then each calculation is related to the starting day of window. If the reference_window argument is set to 'middle', each calculation is related to the middle day of window calculation. If the reference_window argument is set to 'end', then each calculation is related to the ending day of window calculation. For example, if we consider correlations with window from DOY 15 to DOY 35. If reference window is set to ‘start’, then this calculation will be related to the DOY 15. If the reference window is set to ‘end’, then this calculation will be related to the DOY 35. If the reference_window is set to 'middle', then this calculation is related to DOY 25.

Value

A ggplot2 object containing the heatmap display

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
## Not run: 
data(LJ_daily_temperatures)
data(example_proxies_1)
Example1 <- daily_response(response = example_proxies_1,
env_data = LJ_daily_temperatures, method = "lm", metric = "r.squared",
fixed_width = 90, previous_year = TRUE, row_names_subset = TRUE)
plot_heatmap(Example1)

Example2 <- daily_response(response = example_proxies_1,
env_data = LJ_daily_temperatures, method = "brnn",
metric = "adj.r.squared", lower_limit = 50, upper_limit = 55,
row_names_subset = TRUE)
plot_heatmap(Example2)

library(dplyr)
oxygen_isotope <- dplyr::select(example_proxies_1, O18)
Example3 <- daily_response(response = oxygen_isotope,
env_data = LJ_daily_temperatures, method = "cor", lower_limit = 50,
upper_limit = 55, previous_year = TRUE, row_names_subset = TRUE)
plot_heatmap(Example3)

## End(Not run)

jernejjevsenak/dendroTools2 documentation built on May 24, 2019, 7:14 a.m.