We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
decimal.mark
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
I tried to export some tables with ascii by setting the decimal.mark to , (Hungarian standard), but did not succeed:
ascii
,
> ascii(matrix(runif(2),2,2), digits=3, decimal.mark=',') ------- ------- 0.989 0.989 0.899 0.899 ------- -------
What am I missing? Sorry for lame question.
The text was updated successfully, but these errors were encountered:
It seems that using your nice tocharac function inside an ascii call resolves this problem:
tocharac
> ascii(tocharac(matrix(runif(2),2,2), digits=3, decimal.mark=',')) ------- ------- 0,116 0,116 0,173 0,173 ------- -------
Although I am still not sure if this is the standard way of specifying decimal.mark.
Sorry, something went wrong.
No, you're right, it is a bug... I will fix that in a next release.
Thanks.
Thank you really much, @eusebe !
No branches or pull requests
I tried to export some tables with
ascii
by setting thedecimal.mark
to,
(Hungarian standard), but did not succeed:What am I missing? Sorry for lame question.
The text was updated successfully, but these errors were encountered: