Skip to content
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

investigate correlation between readings at different weather stations #10

Open
beanumber opened this issue Mar 30, 2016 · 1 comment
Open

Comments

@beanumber
Copy link
Owner

The correlations between the temperature readings is very high.

temp <- whately_2015 %>%
  inner_join(orchard_2015, by = c("when" = "when"))
cor(Temp_C_Avg.x ~ Temp_C_Avg.y, data = temp)
[1] 0.9608951

Once we solve #9 and #8 it will probably be even higher.

But it also appears that the Whately station has higher readings for higher temperatures. Why? Is it because it's closer to the Sun?

xyplot(Temp_C_Avg.x ~ Temp_C_Avg.y, data = temp)
ladd(panel.abline(0,1))

Is this a real effect? Can we model it?

@liwencong1995
Copy link
Collaborator

The correlations between the temperature readings is 0.9608951; the correlation coefficients between variables of wind measurements and humidity readings are around 0.7. Since one of the weather station is much taller than the other one, it is not surprising that the two weather stations have similar but different readings for most of the variables.

However, the correlation coefficients between the pressure readings and rainfall readings are 0.21156019 and 0.129286628.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants