我目前正在使用以下文字注释我的ggplot2:
annotate("text",x= 40, y=40, label = "18 (23.1%) >= 10%\n 33 (42.3%)
<10% and >= 3%\n 27 (34.6%) < 3%", size = 4, parse = TRUE)
我想将大于或等于文本转换为符号,但是我收到以下错误:
Error in parse(text = as.character(lab)) : <text>:2:26: unexpected
input 1: 18 (23.1%) >= 10% 2: 33 (42.3%) <10% and >= 3%
你可以帮我修改我的注释,以便它可以准确地解析吗? 非常感谢你。