ecor / RMAWGEN

Github version on RMAWGEN package (http://cran.r-project.org/web/packages/RMAWGEN/index.html)
GNU General Public License v3.0
3 stars 5 forks source link

extract months #2

Closed tito-am closed 5 years ago

tito-am commented 5 years ago

Hi,

I have the following error:

Error in extractmonths(data = 1:nrow(generation00$prec_gen), when = c("Dec", : could not find function "extractmonths"

I'm following the precipitation-generator.R example and after installing from source (windows zip) and from repositories (CRAN) i have the same error. I also tried sessionInfo() to be sure the package is loaded. extractdays is identified but it's not the case for extractmonths.

thank you!

Tito

ecor commented 5 years ago

Are RMAWGEN loaded in your session? Function should be found. Take care that 'extractmonths' may not work if 'lubridate' is also loaded because of a new definition of date object masking the one of 'base' package. Thank you Emanuele

tito-am commented 5 years ago

Hi Emmanuele,

Thanks for your quick response. I sourced extractmonths and it solved the problem. Lubridate was creating problems as well but I changed for zoo as well.

I'm currently trying the generator with my own data. And when I try ComprehensivePrecipitationGenerator i get:

Error in spline(x = x, y = val[, i], xout = x_out) : zero non-NA points

I'm beggining slow and I'm trying to generate precipitation for one station. Maybe that's the problem.

Thank you for your help!

Le jeu. 13 juin 2019 à 04:45, Emanuele Cordano notifications@github.com a écrit :

Are RMAWGEN loaded in your session? Function should be found. Take care that 'extractmonths' may not work if 'lubridate' is also loaded because of a new definition of date object masking the one of 'base' package. Thank you Emanuele

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/ecor/RMAWGEN/issues/2?email_source=notifications&email_token=ADBSHRVFKBTPXO4SZVUIUILP2ICKTA5CNFSM4HWWTHOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODXS7M5Q#issuecomment-501610102, or mute the thread https://github.com/notifications/unsubscribe-auth/ADBSHRXYAIKJDWUQTNOPU6LP2ICKTANCNFSM4HWWTHOA .

ecor commented 5 years ago

Fixed