-
Notifications
You must be signed in to change notification settings - Fork 0
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
Working list of things to accomplish #1
Comments
Figure out that if you put any of your documents in the .gitignore file (both on the remote repo and locally on your computer), the .gitignore file WILL push, but your file will not. I've set it so all *.RProj are not pushed or pulled-- sound good for all of you? |
Melissa- data orange, determine useful metadata
Wynne- make maps
Brendan- rodents
Matt - vegetation |
Request: I know there was previously some logic to the "TickPathogen" line and "TickAbundance" line, but I still find myself getting confused by "TickMerged_01", which actually requires both TickPathogen_01 (Downloading) and TickPathogen_02 (Data clean up) to be run. Although obviously if there are strong opinions against this, I am willing to be flexible ;) |
Yes totally! Feel free to re-name any of those files. Agree, it got a little weird once there were multiple scripts for downloading. |
Personal goals for this week:
|
Hi all! Here's a reminder of what we talked about today (and thanks @scelmendorf for many of these ideas!): To-dos:
The next goal is to explore the accuracy of predictions made by these three models on the test dataset. |
@WynneMoss I am definitely not an expert in time-series but some places you could start are (1) Just a random walk model - kind of like a null model. Chaper 8 in Dieze's forecasting book has some examples and there is code here:https://github.com/EcoForecast/EF_Activities/blob/master/Exercise_06_StateSpace.Rmd (since I know you love JAGS). Or, one simple way to add in a seasonal component - which seemed somewhat prominent in the summary plots we looked at today is Gavin Simpson has a whole mess of stuff about using gams to model seasonal time-series (+code) on fromthebottomoftheheap blog (and there is a paper as well on how to go hierarchical: https://peerj.com/articles/6876/) |
Hi all, [updated 23feb2020] Here is a short description of each of the files. There are notes in the main folder that says "TickMerged_02_DataFiltering_NOTES.txt" that is my filtering process and notes. You might want to read sections 6 and 9, since those are the most important changes. ./data_derived/MASTER_all_tck_data_merged.csv
For all subset data (./data_derived/subset_data/) the following is true:
Details about specific subsets: ./data_derived/subset_data/ticks_taxonomy_collapsed/
./data_derived/subset_data/ticks_taxonomy_separated/ ** Not recommended **
./data_derived/subset_data/ticks_IXOSCA/ and ./data_derived/subset_data/ticks_AMBAME/
Good luck, and let me know you find any bugs/problems! M |
FYI: wrote a short function called "stepGAM" that finds the AIC value for a set of models, in case anyone finds it useful. After it runs, you can sort by AIC, REML, or Dev.expl. You can set "constant" predictors (that are common throughout all models). There's also a progress bar. FunctionstepGAM <- function(dat, predictors, response, constant_pred, family) { ExampleallAIC <- stepGAM(dat = tck_borrelia_adj, predictors = allPred, response = "borrPresent", constant_pred = "offset(log(numberTested))", family = binomial) |
Hi tick peeps,
Here is our new repo!
You'll notice that I explicitly made a gitignore file here-- when you clone this repo you'll have that gitignore file. I'm not sure if we want to keep that or not? Let me know.
Below, we can make comments on things we want to work on, and any warnings to others you might want to include.
The text was updated successfully, but these errors were encountered: