缩放X轴错误,需要帮助添加%&引用;GGR图中X轴的符号

缩放X轴错误,需要帮助添加%&引用;GGR图中X轴的符号,r,ggplot2,scaling,R,Ggplot2,Scaling,我正在尝试将X轴从3缩放到5乘以0.5,但每当我尝试使用scale_X_continuous或discrete时,我都会得到以下错误:“X”的比例已经存在。为“X”添加另一个比例将替换现有的比例”。X轴一点也不改变 我做错了什么?我发现的所有示例都建议使用scale_x_continuous/discrete来更改缩放,但找不到任何替代方法 此外,如何将“%”符号添加到X轴中的值?提前多谢 这是我的密码: ggplot() + ggtitle("Crime rate and une

我正在尝试将X轴从3缩放到5乘以0.5,但每当我尝试使用scale_X_continuous或discrete时,我都会得到以下错误:“X”的比例已经存在。为“X”添加另一个比例将替换现有的比例”。X轴一点也不改变

我做错了什么?我发现的所有示例都建议使用scale_x_continuous/discrete来更改缩放,但找不到任何替代方法

此外,如何将“%”符号添加到X轴中的值?提前多谢

这是我的密码:

ggplot() +
  ggtitle("Crime rate and unemployment rate relationship \nin regions with lower unemployment rate") +
  geom_point(aes(x = Unemployment.rate, y= Crime_occurrences, colour = Crime),
             size = 2, data = df) +
  xlab("Unemployment Rate (%)") +
  ylab("Crime Occurrences") +
  new_scale_color()+
  labs(linetype = "Crime") +
  scale_x_continuous(breaks = seq(from = 3, to = 5, by = 0.5))
这是dput(如果需要):

structure(list(Date = structure(c(17897, 17897, 17897, 17928, 
17928, 17928, 17956, 17956, 17956, 17987, 17987, 17987, 18017, 
18017, 18017, 18048, 18048, 18048, 18078, 18078, 18078, 18109, 
18109, 18109, 18140, 18140, 18140, 18170, 18170, 18170, 18201, 
18201, 18201, 18231, 18231, 18231, 18262, 18262, 18262, 18293, 
18293, 18293, 18322, 18322, 18322, 18353, 18353, 18353, 18383, 
18383, 18383, 18414, 18414, 18414, 18444, 18444, 18444, 18475, 
18475, 18475, 18506, 18506, 18506, 18536, 18536, 18536), class = "Date"), 
    Crime = c("Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences", 
    "Anti-social behaviour", "Theft", "Violence and sexual offences"
    ), Crime_occurrences = c(46048L, 59095L, 60903L, 46421L, 
    55113L, 57402L, 53790L, 61596L, 66028L, 58546L, 59191L, 63211L, 
    60366L, 60219L, 65880L, 60129L, 57945L, 66560L, 60293L, 50947L, 
    61021L, 55633L, 50135L, 57478L, 48649L, 48699L, 55966L, 49221L, 
    50774L, 59692L, 42594L, 48351L, 56188L, 38697L, 44196L, 56252L, 
    40911L, 47788L, 58490L, 39094L, 46059L, 55306L, 47758L, 39437L, 
    55195L, 71823L, 26419L, 47693L, 76630L, 28944L, 54598L, 74699L, 
    32291L, 58689L, 66761L, 37074L, 66098L, 68462L, 37713L, 65852L, 
    56563L, 37036L, 60341L, 57994L, 38726L, 58046L), Unemployment.rate = c(3.21299304812096, 
    3.21299304812096, 3.21299304812096, 3.21407730295749, 3.21407730295749, 
    3.21407730295749, 3.07244008464232, 3.07244008464232, 3.07244008464232, 
    3.08493181969057, 3.08493181969057, 3.08493181969057, 3.10614218230136, 
    3.10614218230136, 3.10614218230136, 3.22312556301873, 3.22312556301873, 
    3.22312556301873, 3.12755904901825, 3.12755904901825, 3.12755904901825, 
    3.23579986150285, 3.23579986150285, 3.23579986150285, 3.26468227547793, 
    3.26468227547793, 3.26468227547793, 3.21917119228965, 3.21917119228965, 
    3.21917119228965, 3.39151937106994, 3.39151937106994, 3.39151937106994, 
    3.36709422886676, 3.36709422886676, 3.36709422886676, 3.50615666377231, 
    3.50615666377231, 3.50615666377231, 3.49109767843293, 3.49109767843293, 
    3.49109767843293, 3.4101096182824, 3.4101096182824, 3.4101096182824, 
    3.44083160566247, 3.44083160566247, 3.44083160566247, 3.45075851478447, 
    3.45075851478447, 3.45075851478447, 3.5319782798045, 3.5319782798045, 
    3.5319782798045, 3.63445450113824, 3.63445450113824, 3.63445450113824, 
    4.14712651558611, 4.14712651558611, 4.14712651558611, 4.25985044273646, 
    4.25985044273646, 4.25985044273646, 4.40411017203591, 4.40411017203591, 
    4.40411017203591)), row.names = c(NA, -66L), class = "data.frame")
谢谢

试试这个:

library(ggplot2)
library(ggnewscale)
#Code
ggplot() +
  ggtitle("Crime rate and unemployment rate relationship \nin regions with lower unemployment rate") +
  geom_point(aes(x = Unemployment.rate, y= Crime_occurrences, colour = Crime),
             size = 2, data = df) +
  scale_x_continuous(breaks = seq(from = 3, to = 5, by = 0.5),
                     limits = c(3,5),
                     labels = function(x) paste0(x,'%'))+
  xlab("Unemployment Rate (%)") +
  ylab("Crime Occurrences") +
  new_scale_color()+
  labs(linetype = "Crime")
输出:

更别致的选择(非常感谢并感谢@teunbrand):

输出:


只需留下一条评论,说明scales软件包在这方面也有很好的功能。例如:
labels=scales::percent_format(scale=1,精度=0.1)
@teunbrand我将把它添加到帖子中,非常感谢@非常感谢,我更新了你的信用卡。亲切的问候!一切都很好,谢谢大家!!
#Code2
ggplot() +
  ggtitle("Crime rate and unemployment rate relationship \nin regions with lower unemployment rate") +
  geom_point(aes(x = Unemployment.rate, y= Crime_occurrences, colour = Crime),
             size = 2, data = df) +
  scale_x_continuous(breaks = seq(from = 3, to = 5, by = 0.5),
                     limits = c(3,5),
                     labels = scales::percent_format(scale = 1, accuracy = 0.1))+
  xlab("Unemployment Rate (%)") +
  ylab("Crime Occurrences") +
  new_scale_color()+
  labs(linetype = "Crime")