krose / entsoeapi

An R Wrapper for the Entso-E API.
Other
17 stars 4 forks source link

README example is not working #28

Open sergejlazuk opened 1 week ago

sergejlazuk commented 1 week ago

I wanted to reproduce example shown in README, but failed on the first code snippet:

en_eic() |>
  filter(AreaTypeCode == "CTY", 
         AreaName == "Germany") |>
  glimpse()

What is en_eic? It is not in package namespace...

Thanks, Sergej

sbudai commented 5 days ago

Hey sergejlazuk,

It is a leftover, deprecated function from a previous version. In the forthcoming days I will fix it in the README. In the meantime, you can use this instead: all_approved_eic() |> filter(EicLongName == "Germany") |> glimpse() Thank you for checking the repo! Regards, Sandor