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
From: WinVector/cdata#6 .
Only happens in knitr or reprex contexts:
knitr
reprex
ct = data.frame( variable = c("privée", "publique"), value = c("privée", "publique"), stringsAsFactors = FALSE ) wrapr::has_no_dup_rows(ct) #> Error in (function (..., na.last = TRUE, decreasing = FALSE, method = c("auto", : Character encoding must be UTF-8, Latin-1 or bytes
Created on 2019-03-25 by the reprex package (v0.2.1)
The text was updated successfully, but these errors were encountered:
Found the issue radix sort method plus knitr. The following Rmarkdown shows the problem.
radix
--- title: "Runs in console, but won't knit" output: html_document --- ```{r, error=TRUE} ct = data.frame( variable = c("privée", "publique"), value = c("privée", "publique"), stringsAsFactors = FALSE ) do.call(order, as.list(ct)) do.call(order, c(as.list(ct), list(method = "radix"))) ```
Sorry, something went wrong.
Fixed our issue with 53ed02e and filed underlying issue as yihui/knitr#1690 .
No branches or pull requests
From: WinVector/cdata#6 .
Only happens in
knitr
orreprex
contexts:Created on 2019-03-25 by the reprex package (v0.2.1)
The text was updated successfully, but these errors were encountered: