Skip to content

Commit

Permalink
Changed to rbind.fill from the plyr package to make this work
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin-Jung committed Aug 3, 2019
1 parent 9d14f1e commit b02841b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/get_inat_obs_project.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ get_inat_obs_project <- function(grpid, type = c("observations", "info"), raw =
obs_list[[i]] <-
fromJSON(content(GET(url1), as = "text"), flatten = TRUE)
}
project_obs <- do.call("rbind", obs_list)
project_obs <- do.call("rbind.fill", obs_list)
return(project_obs)
}
}

0 comments on commit b02841b

Please sign in to comment.