- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有两个数据帧,我想循环遍历它们,应用半正矢函数,并在新数组中构造结果。我想获取 da_store 中第一家餐厅的 lat、lng 坐标,对 da_univ 的所有 lat、lng 应用半正矢函数,存储结果并获取最小值。最终,对于每个商店,计算与所有 da_univ 坐标的欧几里德距离,并找到最近的大学和学院。
这是我迄今为止在嵌套 for 循环中的尝试,我正在努力以正确的格式保存结果并找到最小值。
for index_store, row_store in da_store.iterrows():
store_lat = row_store['lat']
store_lon = row_store['lon']
store_list = []
for index_univ, row_univ in da_univ.iterrows():
univ_lat = row_univ['LATITUDE']
univ_lon = row_univ['LONGITUDE']
distance = haversine_np(store_lon, store_lat, univ_lon, univ_lat)
print(distance)
数据框1:da_store
In [203]: da_store.head()
Out[203]:
Restaurant # Restaurant Name Address City State Zip Code lat lon
0 3006 Weymouth Dual Riverway Plaza, Weymouth, MA Weymouth MA 2191 42.244559 -70.936438
1 3009 Somerset Dual Somerset Plaza, Rt. 6, Somerset, MA Somerset MA 2725 41.734643 -71.152320
2 3502 Westboro Mass Pike West Mile Post 105; Mass Turnpike W., Westboro, MA Westboro MA 1581 42.253973 -71.663506
3 3503 Charlton Mass Pike East Mile Post 81; Mass Turnpike E., Charlton, MA Charlton MA 1507 42.101589 -72.018530
4 3504 Charlton Mass Pike West Mile Post 89; Mass Turnpike W., Charlton City, MA Charlton City MA 1508 42.101497 -72.018247
数据框2:da_univ
In [204]: da_univ.head()
Out[204]:
INSTNM ZIP CITY STABBR LATITUDE LONGITUDE
0 Hult International Business School 02141-1805 Cambridge MA 42.369968 -71.070645
1 New England College of Business and Finance 2110 Boston MA 42.353619 -71.056671
2 Assumption College 01609-1296 Worcester MA 42.294226 -71.828991
3 Bancroft School of Massage Therapy 1604 Worcester MA 42.268973 -71.778113
4 Bay State College 2116 Boston MA 42.351760 -71.076991
半正矢函数:haversine_np
from math import radians, cos, sin, asin, sqrt
def haversine_np(lon1, lat1, lon2, lat2):
"""
Calculate the great circle distance between two points
on the earth (specified in decimal degrees)
All args must be of equal length.
"""
lon1, lat1, lon2, lat2 = map(np.radians, [lon1, lat1, lon2, lat2])
dlon = lon2 - lon1
dlat = lat2 - lat1
a = np.sin(dlat/2.0)**2 + np.cos(lat1) * np.cos(lat2) * np.sin(dlon/2.0)**2
c = 2 * np.arcsin(np.sqrt(a))
km = 6367 * c
return km
我需要练习基本编程,谢谢您的帮助!
最佳答案
如果您将循环与 pandas 和 numpy 一起使用,那么您很可能会做错。学习并应用这些库提供的矢量化函数:
# Build an index that contain every pairing of Store - University
idx = pd.MultiIndex.from_product([da_store.index, da_univ.index], names=['Store', 'Univ'])
# Pull the coordinates of the store and the universities together
# We don't need their name here
df = pd.DataFrame(index=idx) \
.join(da_store[['lat', 'lon']], on='Store') \
.join(da_univ[['LATITUDE', 'LONGITUDE']], on='Univ')
def haversine_np(lon1, lat1, lon2, lat2):
"""
Calculate the great circle distance between two points
on the earth (specified in decimal degrees)
All args must be of equal length.
"""
lon1, lat1, lon2, lat2 = map(np.radians, [lon1, lat1, lon2, lat2])
dlon = lon2 - lon1
dlat = lat2 - lat1
a = np.sin(dlat/2.0)**2 + np.cos(lat1) * np.cos(lat2) * np.sin(dlon/2.0)**2
c = 2 * np.arcsin(np.sqrt(a))
km = 6367 * c
return km
df['Distance'] = haversine_np(*df[['lat', 'lon', 'LATITUDE', 'LONGITUDE']].values.T)
# The closest university to each store
min_distance = df.loc[df.groupby('Store')['Distance'].idxmin(), 'Distance']
# Pulling everything together
min_distance.to_frame().join(da_store, on='Store').join(da_univ, on='Univ') \
[['Restaurant Name', 'INSTNM', 'Distance']]
结果:
Restaurant Name INSTNM Distance
Store Univ
0 1 Weymouth Dual New England College of Business and Finance 15.651923
1 4 Somerset Dual Bay State College 68.921108
2 3 Westboro Mass Pike West Bancroft School of Massage Therapy 9.580468
3 2 Charlton Mass Pike East Assumption College 26.514269
4 2 Charlton Mass Pike West Assumption College 26.508821
关于python - 循环两个单独的数据帧,Haversine 函数,存储值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57277290/
我是 PHP 新手。我一直在脚本中使用 for 循环、while 循环、foreach 循环。我想知道 哪个性能更好? 选择循环的标准是什么? 当我们在另一个循环中循环时应该使用哪个? 我一直想知道要
我在高中的编程课上,我的作业是制作一个基本的小计和顶级计算器,但我在一家餐馆工作,所以制作一个只能让你在一种食物中读到。因此,我尝试让它能够接收多种食品并将它们添加到一个价格变量中。抱歉,如果某些代码
这是我正在学习的一本教科书。 var ingredients = ["eggs", "milk", "flour", "sugar", "baking soda", "baking powder",
我正在从字符串中提取数字并将其传递给函数。我想给它加 1,然后返回字符串,同时保留前导零。我可以使用 while 循环来完成此操作,但不能使用 for 循环。 for 循环只是跳过零。 var add
编辑:我已经在程序的输出中进行了编辑。 该程序要求估计给定值 mu。用户给出一个值 mu,同时还提供了四个不等于 1 的不同数字(称为 w、x、y、z)。然后,程序尝试使用 de Jaeger 公式找
我正在编写一个算法,该算法对一个整数数组从末尾到开头执行一个大循环,其中包含一个 if 条件。第一次条件为假时,循环可以终止。 因此,对于 for 循环,如果条件为假,它会继续迭代并进行简单的变量更改
现在我已经习惯了在内存非常有限的情况下进行编程,但我没有答案的一个问题是:哪个内存效率更高;- for(;;) 或 while() ?还是它们可以平等互换?如果有的话,还要对效率问题发表评论! 最佳答
这个问题已经有答案了: How do I compare strings in Java? (23 个回答) 已关闭 8 年前。 我正在尝试创建一个小程序,我可以在其中读取该程序的单词。如果单词有 6
这个问题在这里已经有了答案: python : list index out of range error while iteratively popping elements (12 个答案) 关
我正在尝试向用户请求 4 到 10 之间的整数。如果他们回答超出该范围,它将进入循环。当用户第一次正确输入数字时,它不会中断并继续执行 else 语句。如果用户在 else 语句中正确输入数字,它将正
我尝试创建一个带有嵌套 foreach 循环的列表。第一个循环是循环一些数字,第二个循环是循环日期。我想给一个日期写一个数字。所以还有另一个功能来检查它。但结果是数字多次写入日期。 Out 是这样的:
我想要做的事情是使用循环创建一个数组,然后在另一个类中调用该数组,这不会做,也可能永远不会做。解决这个问题最好的方法是什么?我已经寻找了所有解决方案,但它们无法编译。感谢您的帮助。 import ja
我尝试创建一个带有嵌套 foreach 循环的列表。第一个循环是循环一些数字,第二个循环是循环日期。我想给一个日期写一个数字。所以还有另一个功能来检查它。但结果是数字多次写入日期。 Out 是这样的:
我正在模拟一家快餐店三个多小时。这三个小时分为 18 个间隔,每个间隔 600 秒。每个间隔都会输出有关这 600 秒内发生的情况的统计信息。 我原来的结构是这样的: int i; for (i=0;
这个问题已经有答案了: IE8 for...in enumerator (3 个回答) How do I check if an object has a specific property in J
哪个对性能更好?这可能与其他编程语言不一致,所以如果它们不同,或者如果你能用你对特定语言的知识回答我的问题,请解释。 我将使用 c++ 作为示例,但我想知道它在 java、c 或任何其他主流语言中的工
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我是 C 编程和编写代码的新手,以确定 M 测试用例的质因数分解。如果我一次只扫描一次,该功能本身就可以工作,但是当我尝试执行 M 次时却惨遭失败。 我不知道为什么 scanf() 循环有问题。 in
这个问题已经有答案了: JavaScript by reference vs. by value [duplicate] (4 个回答) 已关闭 3 年前。 我在使用 TSlint 时遇到问题,并且理
我尝试在下面的代码中添加 foreach 或 for 循环,以便为 Charts.js 创建多个数据集。这将允许我在此折线图上创建多条线。 我有一个 PHP 对象,我可以对其进行编码以稍后填充变量,但
我是一名优秀的程序员,十分优秀!