gpt4 book ai didi

date - 在 PySpark 数据框中从一列到另一列的最近日期

转载 作者:行者123 更新时间:2023-12-03 23:45:17 27 4
gpt4 key购买 nike

我有一个 pyspark 数据框,其中提到了商品的价格,但没有商品何时购买的数据,我只有 1 年的范围。

+---------+------------+----------------+----------------+
|Commodity| BuyingPrice|Date_Upper_limit|Date_lower_limit|
+---------+------------+----------------+----------------+
| Apple| 5| 2020-07-04| 2019-07-03|
| Banana| 3| 2020-07-03| 2019-07-02|
| Banana| 4| 2019-10-02| 2018-10-01|
| Apple| 6| 2020-01-20| 2019-01-19|
| Banana| 3.5| 2019-08-17| 2018-08-16|
+---------+------------+----------------+----------------+
我有另一个 pyspark 数据框,我可以在其中查看所有商品的市场价格和日期。
+----------+----------+------------+
| Date| Commodity|Market Price|
+----------+----------+------------+
|2020-07-01| Apple| 3|
|2020-07-01| Banana| 3|
|2020-07-02| Apple| 4|
|2020-07-02| Banana| 2.5|
|2020-07-03| Apple| 7|
|2020-07-03| Banana| 4|
+----------+----------+------------+
当该商品的市场价格(MP)<或=购买价格(BP)时,我想查看最接近日期上限的日期。
预期输出(顶部 2 列):
+---------+------------+----------------+----------------+--------------------------------+
|Commodity| BuyingPrice|Date_Upper_limit|Date_lower_limit|Closest Date to UL when MP <= BP|
+---------+------------+----------------+----------------+--------------------------------+
| Apple| 5| 2020-07-04| 2019-07-03| 2020-07-02|
| Banana| 3| 2020-07-03| 2019-07-02| 2020-07-02|
+---------+------------+----------------+----------------+--------------------------------+
尽管苹果在 2020 年 7 月 1 日(3 美元)的价格要低得多,但自 2020 年 7 月 2 日以来,当 MP <= BP 时,这是第一个从日期上限 (UL) 倒退的日期。所以,我选择了 2020-07-02。
我怎样才能看到可能购买的日期?

最佳答案

试试这个 conditional join window function

from pyspark.sql import functions as F
from pyspark.sql.window import Window

w=Window().partitionBy("Commodity")

df1\ #first dataframe shown being df1 and second being df2
.join(df2.withColumnRenamed("Commodity","Commodity1")\
, F.expr("""`Market Price`<=BuyingPrice and Date<Date_Upper_limit and Commodity==Commodity1"""))\
.drop("Market Price","Commodity1")\
.withColumn("max", F.max("Date").over(w))\
.filter('max==Date').drop("max").withColumnRenamed("Date","Closest Date to UL when MP <= BP")\
.show()

#+---------+-----------+----------------+----------------+--------------------------------+
#|Commodity|BuyingPrice|Date_Upper_limit|Date_lower_limit|Closest Date to UL when MP <= BP|
#+---------+-----------+----------------+----------------+--------------------------------+
#| Banana| 3.0| 2020-07-03| 2019-07-02| 2020-07-02|
#| Apple| 5.0| 2020-07-04| 2019-07-03| 2020-07-02|
#+---------+-----------+----------------+----------------+--------------------------------+

关于date - 在 PySpark 数据框中从一列到另一列的最近日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63182940/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com