Skip to content

Commit

Permalink
Merge pull request #44 from sebpardo/master
Browse files Browse the repository at this point in the history
Change rbind_all to bind_rows, closes #43
  • Loading branch information
sebpardo committed May 4, 2016
2 parents 3391cb1 + bd81feb commit ec2e74f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
@@ -1,5 +1,5 @@
Package: rebird
Version: 0.3.0
Version: 0.3.1
Date: 2016-03-23
Title: R Client for the eBird Database of Bird Observations
Description: A programmatic client for the eBird database, including functions
Expand Down
2 changes: 1 addition & 1 deletion R/zzz.R
Expand Up @@ -26,7 +26,7 @@ ebird_GET <- function(url, args, ...){
}
}
}))
rbind_all(lapply(json, data.frame, stringsAsFactors = FALSE))
bind_rows(lapply(json, data.frame, stringsAsFactors = FALSE))
}
}
}

0 comments on commit ec2e74f

Please sign in to comment.