Changing size of the dots in a balloon plot and keeping zero values

后端 未结 1 828
故里飘歌
故里飘歌 2021-01-23 22:02

With these data

Data <- structure(list(ObsVal = c(22L, 50L, 8L, 15L, 54L, 30L, 11L, 90L, 
6L, 53L, 9L, 42L, 72L, 40L, 60L, 58L, 1L, 20L, 37L, 2L, 50L, 
68L,          


        
1条回答
  •  时光说笑
    2021-01-23 22:54

    You may try to use scale_size_continuous and its range argument. E.g. something like this:

    p + scale_size_continuous(range = c(2, 10))
    

    0 讨论(0)
提交回复
热议问题