-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Next steps from WW, BBL, NM meeting 9/18 #37
Comments
Or, Js for peak daylight hours, which might be more defensible (and not much harder). |
PACF
|
Q1 and Q2
|
Add sapwood area into Js
|
Calculate a Js_peak daily variable using Js from 11-1p
|
@bpbond could you help with investigating the PACF errors and |
How about we take use the top 3 hours of maximum sunlight via PAR to compute |
@stephpenn1 I took a close look at what's going on with the PACF. Start by isolating just the first day of data: combined_pacf[38:60,] -> tst
plot(tst$Js_avg) OK, this is nice and simple for us to examine now. pacf(tst$Js_avg, na.action = na.pass) This is reassuring--we're seeing a similar pattern to the mysterious (to us) pattern for the full dataset currently produced in the Rmd: The ACF gives us straight lagged correlations:
This makes sense. Js is highly correlated with itself at a 1-hour lag, less correlated at 2, etc., and anti-correlated at 10-12 hours. |
So, we think the PACF plot is OK actually. How do we interpret it? From Wikipedia:
In the PACF plot being produced by the RMarkdown file
So in summary: I think we're OK here. The negative PACF at lag 2 is a mathematical consequence of the sharp diurnal cycle of Js. |
Js_peak
daily variable using Js from 11-1pThe text was updated successfully, but these errors were encountered: