ropensci / allodb

An R package for biomass estimation at extratropical forest plots.
https://docs.ropensci.org/allodb/
GNU General Public License v3.0
36 stars 11 forks source link

In `equations`, fix row with missing values #50

Closed maurolepore closed 6 years ago

maurolepore commented 6 years ago

image

maurolepore commented 6 years ago

The problem comes from master, where a couple of rows have missing values of equation_allometry (and many other columns).

image

Given that we decided to start editing the split .csv files, the best place to fix this issue is in data-raw/csv_database, by removing the row where equation_id is "89bf40". @gonzalezeb, can you please do that?

image

gonzalezeb commented 6 years ago

I deleted it from both tables equation and sitespecies...

maurolepore commented 6 years ago

Great, thanks!

library(allodb)

equations %>% 
  filter(is.na(equation_allometry))
#> Error in equations %>% filter(is.na(equation_allometry)): could not find function "%>%"

Created on 2018-10-03 by the reprex package (v0.2.1)