Replies: 7 comments 2 replies
-
Beta Was this translation helpful? Give feedback.
-
Thank you for your attention! Rstudio offers a solution.
At 2025-04-16 01:22:45, "Wes McKinney" ***@***.***> wrote:
I also see this issue, though the data shows up correctly in the console:
image.png (view on web)
I tried this from a terminal R session, and the issue seems to come from ggplot2 plot rendering, so it may make sense to open an issue there?
image.png (view on web)
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Thank you for your attention! Rstudio offers a solution.
In RGui, the Chinese characters display normally.
At 2025-04-16 01:22:45, "Wes McKinney" ***@***.***> wrote:
I also see this issue, though the data shows up correctly in the console:
image.png (view on web)
I tried this from a terminal R session, and the issue seems to come from ggplot2 plot rendering, so it may make sense to open an issue there?
image.png (view on web)
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Thanks for your report, @JTCDCTWB! 🙌 Can you say in a bit more detail what you are seeing in Positron vs. RStudio? Screenshots from both would be very helpful. I see the same behavior in both, but I know that installed fonts and such may be different for you. |
Beta Was this translation helpful? Give feedback.
-
reprex library(tidyverse)
df <- tibble(
性别 = c("男","女"),
病例数 = c(25,32)
)
ggplot(df,aes(性别,病例数)) +
geom_point() Can confirm that in RStudio without |
Beta Was this translation helpful? Give feedback.
-
library(tidyverse)
df <- tibble(
性别 = c("男","女"),
病例数 = c(25,32)
)
ggplot(df,aes(性别,病例数)) +
geom_point()
At 2025-04-17 23:21:26, "Julia Silge" ***@***.***> wrote:
Ah, I believe this may be related to #6707, which is slated for some work this very milestone. Want to take a look and share your use case?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
This will be fixed in the next version of Positron as long as you have the ragg R package installed! ![]() |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
`
df <- tibble(
性别 = c("男","女"),
病例数 = c(25,32)
)
ggplot(df,aes(性别,病例数)) +
geom_point()
Beta Was this translation helpful? Give feedback.
All reactions