We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When i create my own Symbol data in minutes, my periodicity(R)$units is 'mins'. as a result the function throws follwing Error:
periodicity(R)$units
'mins'
Error in if (units == "months" && nrow(R) > 500) units <- "years" : missing value where TRUE/FALSE needed
I would propose to add "mins" to the units (starting row 111 in chart.forward.R):
units <- switch(units, mins="hours", seconds = 'hours', minutes = 'hours', hours = 'days', days = 'months', weeks = 'years', months = 'years', quarters = 'years', years = 'years')
I dont know if this counts as a Bug.
The text was updated successfully, but these errors were encountered:
you should be able to add mins to the same row that already has minutes, or at least put them next to each other with the same style.
Sorry, something went wrong.
hi @N0talent is this still an issue if you upgrade to latest version 0.16.1?
No branches or pull requests
When i create my own Symbol data in minutes, my
periodicity(R)$units
is'mins'
.as a result the function throws follwing Error:
I would propose to add "mins" to the units (starting row 111 in chart.forward.R):
I dont know if this counts as a Bug.
The text was updated successfully, but these errors were encountered: