- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有一种方法可以将在 map 上抖动的点保持在该 map 的边界内?在下面的示例中,康涅狄格州西南部的抖动位置最终落入水中或处于邻接状态,是否有办法使位置点抖动R但不在 map 边界上?
或者,是否还有其他技术,例如在每个城市附近创建一个表格组以列出公司名称?
# create a data frame called "ct" of geolocations in two cities near the border of a US state (Connecticut). Each firm has the same lat and longitude of one of the two cities
> dput(ct)
structure(list(city = structure(c(1L, 1L, 1L, 1L, 1L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L), .Label = c("Greenwich", "Stamford"), class = "factor"),
firm = structure(c(1L, 12L, 21L, 22L, 23L, 24L, 25L, 26L,
27L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L, 11L, 13L, 14L,
15L, 16L, 17L, 18L, 19L, 20L), .Label = c("A1", "A10", "A11",
"A12", "A13", "A14", "A15", "A16", "A17", "A18", "A19", "A2",
"A20", "A21", "A22", "A23", "A24", "A25", "A26", "A27", "A3",
"A4", "A5", "A6", "A7", "A8", "A9"), class = "factor"), long = c(-73.63,
-73.63, -73.63, -73.63, -73.63, -73.55, -73.55, -73.55, -73.55,
-73.55, -73.55, -73.55, -73.55, -73.55, -73.55, -73.55, -73.55,
-73.55, -73.55, -73.55, -73.55, -73.55, -73.55, -73.55, -73.55,
-73.55, -73.55), lat = c(41.06, 41.06, 41.06, 41.06, 41.06,
41.09, 41.09, 41.09, 41.09, 41.09, 41.09, 41.09, 41.09, 41.09,
41.09, 41.09, 41.09, 41.09, 41.09, 41.09, 41.09, 41.09, 41.09,
41.09, 41.09, 41.09, 41.09)), .Names = c("city", "firm",
"long", "lat"), row.names = c(NA, -27L), class = "data.frame")
library(ggplot2)
# load the map of the United States
all_states <- map_data("state")
# choose to map the borders only of the state of Connecticut
st.map <- subset(all_states, region == "connecticut")
# plot the points for the firms with minimal jitter that still distinguishes each point
ggplot(ct, aes(long, lat)) +
geom_polygon(data=st.map, aes(x=long, y=lat, group = group), colour="grey70", fill="white") +
coord_map() +
geom_point(position=position_jitter(width=.1, height=.1), size=2)
最佳答案
您可以创建自己的jitter
函数来抖动数据。然后使用pnt.in.poly
中的SDMTools
函数检查点是否在多边形内。否则,您将再次抖动原始点。参见以下示例:
require(SDMTools)
bounded_jitter <- function(mapping, data, bounds, width, height, ...){
# data2 is the jittered data
data2 <- data
data2[, paste(mapping$x)] <- rnorm(nrow(data), data[, paste(mapping$x)], width/1.96)
data2[, paste(mapping$y)] <- rnorm(nrow(data), data[, paste(mapping$y)], height/1.96)
# is it inside the polygon?
idx <- as.logical(pnt.in.poly(pnts = data2[, c(paste(mapping$x), paste(mapping$y))],
poly.pnts = bounds)[, 'pip'])
while(!all(idx)) { # redo for points outside polygon
data2[!idx, paste(mapping$x)] <- rnorm(sum(!idx), data[!idx, paste(mapping$x)], width/1.96)
data2[!idx, paste(mapping$y)] <- rnorm(sum(!idx), data[!idx, paste(mapping$y)], height/1.96)
idx <- as.logical(pnt.in.poly(pnts = data2[, c(paste(mapping$x), paste(mapping$y))],
poly.pnts = bounds)[, 'pip'])
}
# the point
geom_point(data = data2, mapping, ...)
}
# plot the points for the firms with minimal jitter that still distinguishes each point
ggplot(ct, aes(long, lat)) +
geom_polygon(data=st.map, aes(x=long, y=lat, group = group), colour="grey70", fill="white") +
coord_map() +
geom_point(size=2) +
bounded_jitter(mapping = aes(x=long, y=lat),
data = ct,
bounds = st.map[, c('long', 'lat')],
width = .1,
height = .1)
关于r - ggplot2如何在 map 边界(例如美国州)内保持抖动的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27622483/
以下显示而不是我模板中的字段。 我的模板有 {{ form.state }} 问题是什么? class RegistrationForm(forms.Form): first_name =
所以我有这个正则表达式测试器: /^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/.test(value); 它适用于以下情况: 123-456-
这是基本问题: 美国联邦所得税可能每年甚至年中发生变化。它们基于税表,无论您是单例还是已婚,您获得付款的频率以及您申请的免税额。以下是单例且每两周领取一次工资的纳税表示例(2013 年): Gross
我在 America/Los_Angeles TZ 上,当我尝试在 America/Mazatlan TZ 中渲染午夜时,出现以下异常: Exception in thread "main" java
我正在使用美国 map 来显示数据状态,Extension map 工作正常悬停时,我成功地为每个状态提供了值。但使用循环。 "mouseover" : function(event, data)
我正在尝试在数据集中创建一个新列,该新列依赖于数据中的两个单独的列(国家/地区和邮政编码)。如果国家/地区是“美国”,我希望新列获取邮政编码列中的数据并删除“-”后面的所有内容(仅保留前五个数字)。如
这个问题在这里已经有了答案: pytz localize vs datetime replace (4 个答案) 关闭 4 年前。 这是我的 Python 代码: import pytz from
我正在尝试为每个状态分配一种颜色,以便没有两个相邻状态共享相同的颜色 ( http://en.wikipedia.org/wiki/Four_color_theorem )。该程序将输出每个状态及其颜
给定一个州列表,如美国各州,我试图编写一个算法来判断这些州是否相邻。顺序无关紧要,可以重新访问状态。 例子: AZ, CA, OR, WA 是连续的 AZ, CA, NM, UT 是连续的 AZ, N
我正在使用 MySQL 执行一些深入的数据分析,并且希望能够创建美国的颜色编码 map ,其中将根据值范围设置各个州的颜色;有任何想法吗?管理层喜欢颜色,轻松地按地理位置汇总数据的能力对他们来说将
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 10 年前。 Improve th
我有一个语言切换器,它工作得很好,直到我收到用户的邮件说我的应用程序无法加载任何内容。 经过一番交谈,用户告诉我他们将 iDevice 语言设置为英语(英国)。我告诉他们将其更改为英语(美国),然后该
使用 Mike Bostock 示例的 d3.v3 的美国 map : 我希望 map 在页面加载时最初放大到标记的位置,但应该呈现整个 map ,以便用户可以根据需要缩小。 var w = 300;
我希望我的 iOS 应用程序能够显示特定于用户当前所在州(即加利福尼亚州、俄勒冈州等)的信息。这是如何使用核心位置来完成的? CLLocation 类具有坐标 — 如何将其转换为状态? (仅供引用,我
我正在使用 jQuery 美国 map 插件。 在这里找到的。 https://github.com/NewSignature/us-map/ 我正在尝试添加 10 个附加按钮,它们也将与状态数据相关
我是澳大利亚的一名开发者,我正在为 Android 和 iOS 项目使用 Firebase 实时数据库。 客户提示滞后和延迟,尤其是在登录时,我正在尝试查明是否有任何 Firebase 进程默认位于美
我正在尝试找到一种使用 NSNumberFormatter 将输入数字字符串格式化为美国电话号码样式的方法。 例如:4155552671应该是+1-415-555-2671(如果我没记错的话) 我想知
该问题要求计算一周中每一天的第 13 个数。这是我的代码。 class CopyOffriday { public static void main(String[] args) throws IOE
出于学习目的,我正在尝试开发一个应用程序,它将在 MKMapView 上显示到特定点的方向。 但是,无论地址如何,DirectionsResponse 每次都会给我以下错误: 2013-12-28 1
我有一个非常简单的登录页面(登录名+密码)。 我的用户是法国人,所以他们的键盘是法语 (azerty)。 从 iOS 12 开始,当他们点击 protected 密码文本字段时,键盘会切换为英语 (q
我是一名优秀的程序员,十分优秀!