英文:
bbmap change atomic vector value
问题
我正在使用 bbmap
和 ggmap
来绘制纽约曼哈顿的地图。我的代码是:
mh_bb <- getbb('manhattan new york usa')
mh_map <- get_map(mh_bb, source='google')
ggmap(mh_map)
然而,我想要降低纬度的最小值。我尝试了:
mh_bb$min[2] <- 40.6
但我收到错误消息,提示 $ operator is invalid for atomic vectors
。请问有人可以告诉我如何更改最小纬度吗?谢谢!
英文:
I'm using bbmap
and ggmap
to plot a map of Manhattan, New York, USA. My code is:
mh_bb <- getbb('manhattan new york usa')
mh_map <- get_map(mh_bb, source='google')
ggmap(mh_map)
However, I would like to lower the minimum value of the latitude. I tried:
mh_bb$min[2] <- 40.6
but I get the error that $ operator is invalid for atomic vectors
.
Could someone tell me how I can change the minimum latitude? Thanks!
答案1
得分: 1
尝试这个:
mh_bb <- getbb('曼哈顿 纽约 美国')
mh_bb[2] <- 40.6
mh_map <- get_map(mh_bb, source='谷歌')
ggmap(mh_map)
英文:
Try this:
mh_bb <- getbb('manhattan new york usa')
mh_bb[2] <- 40.6
mh_map <- get_map(mh_bb, source='google')
ggmap(mh_map)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论