我有一个数据帧,有两列,days
,表示用户被看到和users
的天数,计算该天数内看到的用户数。
+----+---------------+
|days|number_of_users|
+----+---------------+
| 2| 3922|
| 3| 1750|
| 4| 883|
| 5| 563|
| 6| 319|
| 7| 157|
| 8| 79|
| 9| 31|
| 10| 9|
| 11| 2|
+----+---------------+
用户看到 2 天(这里 3922(看不到 3,4 等。因此,每个存储桶都包含一组唯一的用户。如何根据此数据帧计算平均用户状态?
我正在考虑像sum_i[users(i)*days(i)] / 30
这样的事情,其中 30 是当月的总天数。但是,我不确定如何做到这一点,或者它是否是正确的公式。
编辑:平均用户存在是指看到用户的平均天数,例如,从上表中,大约 3.5 天。
以天数表示的平均用户存在将是加权平均值sum_i[users(i)*days(i)] / sum_i[users(i)]
-
#Create the DataFrame
from pyspark.sql.functions import col, lit, sum
df = spark.createDataFrame([(2,3922),(3,1750),(4,883),(5,563),(6,319),(7,157),(8,79),
(9,31),(10,9),(11,2)], schema = ['days','number_of_users'])
#Calculating the weighted mean.
df = df.withColumn('Dummy',lit('Dummy'))
df = df.groupBy('Dummy').agg((sum(col('number_of_users') * col('days'))/sum(col('number_of_users'))).alias('avg_user_presence')).drop('Dummy')
df.show()
+------------------+
| avg_user_presence|
+------------------+
|3.0430330524951392|
+------------------+
交叉检查:
(2*3922+3*1750+4*883+5*563+6*319+7*157+8*79+9*31+10*9+11*2)/(3922+1750+883+563+319+157+79+31+9+2)
= 23477/7715
= 3.0403