Description Usage Arguments Value Examples
View source: R/plot_specific.R
Graphs a line plot of a row with a selected window width in a matrix,
produced by daily_response function.
| 1 | plot_specific(result_daily_response, window_width, title = TRUE)
 | 
| result_daily_response | a list with three objects as produced by daily_response function | 
| window_width | integer representing window width to be displayed | 
| title | logical, if set to FALSE, no plot title is displayed | 
A ggplot2 object containing the plot display
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Not run: 
data(daily_temperatures_example)
data(example_proxies_1)
Example1 <- daily_response(response = example_proxies_1,
env_data = daily_temperatures_example, method = "lm", measure = "r.squared",
lower_limit = 90, upper_limit = 150)
plot_specific(Example1, window_width = 90)
Example2 <- daily_response(response = example_proxies_1,
env_data = daily_temperatures_example, method = "brnn",
measure = "adj.r.squared", lower_limit = 150, upper_limit = 155,
neurons = 1)
plot_specific(Example2, window_width = 153, title = TRUE)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.