hsd table issue
Closed this issue · 5 comments
Do you know what I did wrong here? All of the phosphorus pools have the same values. I went line by line and I think it happens somewhere in the code for abund_table_with_hsd_ftrt. But I'm not sure what happens.
WyoP/code/3-threewayanovas-som.R
Lines 308 to 322 in 1929dd0
line 305 should be:
group_by(ctrt, time, phos_pool) %>%
WyoP/code/3-threewayanovas-som.R
Line 305 in 1929dd0
also, in your packages
script, comment out the install.packages()
line. Otherwise, you're installing the package each time you source() the script.
Line 16 in 1929dd0
Also, add .DS_Store
to the gitignore
I actually had line 305 like that originally and changed it to try to solve the problem. It's still messed up when I change it back.
same problem on line 273
You were getting the same value for all because table_ftrt did not have a column for phos_pool.
group_by(ctrt, ftrt, time, phos_pool) %>%
WyoP/code/3-threewayanovas-som.R
Line 273 in bfc403a
This gives me:
Ohhh!!! Thank you!!