Skip to content

Instantly share code, notes, and snippets.

@randyzwitch
Last active August 29, 2015 14:03
Show Gist options
  • Save randyzwitch/d4c0026736b78132533a to your computer and use it in GitHub Desktop.
Save randyzwitch/d4c0026736b78132533a to your computer and use it in GitHub Desktop.
Funny Error Message
#Loop over df and accumulate results
parsed_df <- data.frame()
for(i in 1:nrow(df)){
temp <- cbind(df[i,],breakdown_list[[i]])
parsed_df <- rbind(parsed_df, temp)
}
There were 12 warnings (use warnings() to see them)
>warnings()
Warning messages:
1: In data.frame(..., check.names = FALSE) :
row names were found from a short variable and have been discarded
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment