We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Ability to calculate the revision-ness.
Need to happen in steadily growing, forward prediction type environment. There is no 'agreed' on method here. Check the literature.
Previous code used:
revisionWrap <- function(indexid.data, index.data){ ind.list <- names(table(indexid.data$usid)) ind.cap <- list() for(qq in 1:length(ind.list)){ ind.i <- index.data[grep(ind.list[[qq]], index.data$usid), ] rev.list <- list() for(i in 2:120){ rev.list[[i-1]] <- sd(ind.i[ind.i$time==i,]$value) } ind.cap[[qq]] <- mean(unlist(rev.list), na.rm=TRUE) } names(ind.cap) <- ind.list ind.df <- data.frame(usid=names(ind.cap), rev=unlist(ind.cap)) return(ind.df) }
The text was updated successfully, but these errors were encountered:
Should this happen automatically in a time-wrap situation? Or as a wrapper thereoef?
Sorry, something went wrong.
Add: #20: Revision Calculations
5ddbe5c
Add: #18 #20 Separate out the index series creation from the FC error
1a41eb7
andykrause
No branches or pull requests
Ability to calculate the revision-ness.
Need to happen in steadily growing, forward prediction type environment. There is no 'agreed' on method here. Check the literature.
Previous code used:
The text was updated successfully, but these errors were encountered: