- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个数据框,它看起来像:
DF_1>
T_id D1 D2 Num type type_2 fig
xt-1 2017-05-01 2017-03-25 12:11:45 10 A X 25.20
xt-2 2017-05-01 2017-03-25 21:05:25 20 A Y 20.15
xt-3 2017-05-01 2017-03-25 08:10:55 25 B X 15.11
xt-4 2017-05-03 2017-03-25 07:19:35 30 B Y 22.56
xt-5 2017-05-03 2017-03-25 13:12:56 45 C Z 35.45
xt-6 2017-05-03 2017-03-25 18:14:44 20 D Z 27.21
xt-7 2017-04-06 2017-03-25 19:21:35 15 A Z 23.20
xt-8 2017-04-06 2017-03-25 21:11:15 40 C X 21.40
xt-9 2017-04-08 2017-02-25 22:25:04 20 A A 27.50
xt-10 2017-04-06 2017-02-25 16:04:08 30 A Y 32.20
xt-11 2017-04-05 2017-02-25 18:15:25 20 C Z 30.20
xt-12 2017-04-01 2017-01-25 19:22:25 50 A Z 33.15
xt-13 2017-04-02 2017-01-25 23:19:05 15 A A 30.12
xt-14 2017-03-03 2017-01-25 14:25:09 15 D Y 31.25
xt-15 2017-03-10 2017-01-25 23:25:36 40 A X 25.45
1. Date (Last Three Date from `sys.date()`)
D1 count sum mean_num total_sum count_A sum_A count_other sum_other mean_fig mean_TAT
2017-05-03 3 95 31.66 6 0 0 3 95 28.40
2017-05-02 0 0 0 3 0 0 0 0 0.00
2017-05-01 3 55 18.33 3 2 30 1 25 20.15
mean_TAT
:减去D2
- D1
而不是拿count
同一日期的值。 total_sum
将从该月的第一个日期开始累积。 count_A
和 sum_A
基于 type
如 A
对于特定的一天。 count_other
和 sum_other
对于那些type
不是 A
. type_2
基于特定月份的计数。 increase_%
将在上个月计算(即,如果 5 月 17 日的 count
是 50 比 4 月 17 日的 100,则其他 5 行基于上个月 count
和 sum
的值为 -50% 和相同。 A
对于 type_2
的值,每个月都是常数是“A”。 Other
将是除了那些 4 type_2
正如刚才提到的。 Total
将按照 count
的列和 sum
会有加法和为 mean
会有意思。 最佳答案
这已经是第一部分:
library(lubridate)
library(dplyr)
df2 <- df1 %>%
mutate(ym = year(D1)*100+month(D1)) %>%
arrange(D1) %>%
group_by(D1,ym) %>%
summarize(count = n(),
sum=sum(Num),
mean_num=mean(Num),
count_A=sum(type=='A'),
sum_A=sum(Num * (type=='A')),
count_other=sum(type!='A'),
sum_other=sum(Num * (type!='A')),
mean_fig = mean(fig),
mean_TAT = mean(D2-D1)) %>%
group_by(ym) %>%
mutate(total_sum=cumsum(count)) %>%
ungroup %>%
arrange(desc(D1)) %>%
select(D1,count,sum,mean_num,total_sum,count_A,sum_A,count_other,sum_other,mean_fig,mean_TAT)
# # A tibble: 9 x 11
# D1 count sum mean_num total_sum count_A sum_A count_other sum_other mean_fig mean_TAT
# <date> <int> <int> <dbl> <int> <int> <int> <int> <int> <dbl> <time>
# 1 2017-05-03 3 95 31.66667 6 0 0 3 95 28.40667 -39.00000 days
# 2 2017-05-01 3 55 18.33333 3 2 30 1 25 20.15333 -37.00000 days
# 3 2017-04-08 1 20 20.00000 7 1 20 0 0 27.50000 -42.00000 days
# 4 2017-04-06 3 85 28.33333 6 2 45 1 40 25.60000 -21.33333 days
# 5 2017-04-05 1 20 20.00000 3 0 0 1 20 30.20000 -39.00000 days
# 6 2017-04-02 1 15 15.00000 2 1 15 0 0 30.12000 -67.00000 days
# 7 2017-04-01 1 50 50.00000 1 1 50 0 0 33.15000 -66.00000 days
# 8 2017-03-10 1 40 40.00000 2 1 40 0 0 25.45000 -44.00000 days
# 9 2017-03-03 1 15 15.00000 1 0 0 1 15 31.25000 -37.00000 days
df1 <- read.table(text="T_id D1 D2 Num type type_2 fig
xt-1 2017-05-01 '2017-03-25 12:11:45' 10 A X 25.20
xt-2 2017-05-01 '2017-03-25 21:05:25' 20 A Y 20.15
xt-3 2017-05-01 '2017-03-25 08:10:55' 25 B X 15.11
xt-4 2017-05-03 '2017-03-25 07:19:35' 30 B Y 22.56
xt-5 2017-05-03 '2017-03-25 13:12:56' 45 C Z 35.45
xt-6 2017-05-03 '2017-03-25 18:14:44' 20 D Z 27.21
xt-7 2017-04-06 '2017-03-25 19:21:35' 15 A Z 23.20
xt-8 2017-04-06 '2017-03-25 21:11:15' 40 C W 21.40
xt-9 2017-04-08 '2017-02-25 22:25:04' 20 A Q 27.50
xt-10 2017-04-06 '2017-02-25 16:04:08' 30 A W 32.20
xt-11 2017-04-05 '2017-02-25 18:15:25' 20 C V 30.20
xt-12 2017-04-01 '2017-01-25 19:22:25' 50 A Z 33.15
xt-13 2017-04-02 '2017-01-25 23:19:05' 15 A Z 30.12
xt-14 2017-03-03 '2017-01-25 14:25:09' 15 D Y 31.25
xt-15 2017-03-10 '2017-01-25 23:25:36' 40 A X 25.45",h=T,strin=F)
df1$D1 <- as.Date(df1$D1,"%Y-%m-%d")
df1$D2 <- as.Date(df1$D2,"%Y-%m-%d")
expected_output <- read.table(text="D1 count sum mean_num total_sum count_A sum_A count_other sum_other mean_fig
2017-05-03 3 95 31.66 6 0 0 3 95 28.40
2017-05-02 0 0 0 3 0 0 0 0 0.00
2017-05-01 3 55 18.33 3 2 30 1 25 20.15")
df_month <- df1 %>%
mutate(ym = year(D1)*100+month(D1)) %>%
arrange(D1) %>%
group_by(ym) %>%
summarize(count = n(),
sum=sum(Num),
mean_num=mean(Num),
count_A=sum(type=='A'),
sum_A=sum(Num * (type=='A')),
count_other=sum(type!='A'),
sum_other=sum(Num * (type!='A')),
mean_fig = mean(fig),
mean_TAT = mean(D2-D1)) %>%
mutate(type_2=paste0(month.abb[ym%% 100],"-",ym %/% 100 -2000)) %>%
select(ym,type_2,count,sum,mean_num,count_A,sum_A,count_other,sum_other,mean_fig,mean_TAT)
df_top3 <- df1 %>%
filter(type_2 !="A") %>%
mutate(ym = year(D1)*100+month(D1)) %>%
arrange(desc(ym)) %>%
group_by(ym,type_2) %>%
summarize(count = n(),
sum=sum(Num),
mean_num=mean(Num),
count_A=sum(type=='A'),
sum_A=sum(Num * (type=='A')),
count_other=sum(type!='A'),
sum_other=sum(Num * (type!='A')),
mean_fig = mean(fig),
mean_TAT = mean(D2-D1)) %>%
group_by(ym) %>%
arrange(desc(count)) %>%
slice(1:3) %>%
ungroup %>%
select(ym,type_2,count,sum,mean_num,count_A,sum_A,count_other,sum_other,mean_fig,mean_TAT)
df_A <- df1 %>%
filter(type_2 == "A") %>%
mutate(ym = year(D1)*100+month(D1)) %>%
arrange(desc(ym)) %>%
group_by(ym,type_2) %>%
summarize(count = n(),
sum=sum(Num),
mean_num=mean(Num),
count_A=sum(type=='A'),
sum_A=sum(Num * (type=='A')),
count_other=sum(type!='A'),
sum_other=sum(Num * (type!='A')),
mean_fig = mean(fig),
mean_TAT = mean(D2-D1)) %>%
select(ym,type_2,count,sum,mean_num,count_A,sum_A,count_other,sum_other,mean_fig,mean_TAT)
df_other <- df1 %>%
mutate(ym = year(D1)*100+month(D1)) %>%
anti_join(bind_rows(df_top3,df_A),by = c("ym","type_2")) %>%
mutate(type_2="Other") %>%
arrange(desc(ym)) %>%
group_by(ym,type_2) %>%
summarize(count = n(),
sum=sum(Num),
mean_num=mean(Num),
count_A=sum(type=='A'),
sum_A=sum(Num * (type=='A')),
count_other=sum(type!='A'),
sum_other=sum(Num * (type!='A')),
mean_fig = mean(fig),
mean_TAT = mean(D2-D1)) %>%
select(ym,type_2,count,sum,mean_num,count_A,sum_A,count_other,sum_other,mean_fig,mean_TAT)
# it's empty with your example data
bind_rows(df_month,df_top3,df_A,df_other) %>%
arrange(ym) %>%
select(-ym) %>%
rename(Month = type_2)
关于r - 如何在 R 中使用 Dataframe 创建所需的矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49098331/
假设我有 3 个 DataFrame。其中一个 DataFrame 的列名不在其他两个中。 using DataFrames df1 = DataFrame([['a', 'b', 'c'], [1,
假设我有 3 个 DataFrame。其中一个 DataFrame 的列名不在其他两个中。 using DataFrames df1 = DataFrame([['a', 'b', 'c'], [1,
我有一个 largeDataFrame(多列和数十亿行)和一个 smallDataFrame(单列和 10,000 行)。 只要 largeDataFrame 中的 some_identifier 列
我有一个函数,可以在其中规范化 DataFrame 的前 N 列。我想返回规范化的 DataFrame,但不要管原来的。然而,该函数似乎也会对传递的 DataFrame 进行变异! using D
我想在 Scala 中使用指定架构在 DataFrame 上创建。我尝试过使用 JSON 读取(我的意思是读取空文件),但我认为这不是最佳实践。 最佳答案 假设您想要一个具有以下架构的数据框: roo
我正在尝试从数据框中删除一些列,并且不希望返回修改后的数据框并将其重新分配给旧数据框。相反,我希望该函数只修改数据框。这是我尝试过的,但它似乎并没有做我所除外的事情。我的印象是参数是作为引用传递的,而
我有一个包含大约 60000 个数据的庞大数据集。我会首先使用一些标准对整个数据集进行分组,接下来我要做的是将整个数据集分成标准内的许多小数据集,并自动对每个小数据集运行一个函数以获取参数对于每个小数
我遇到了以下问题,并有一个想法来解决它,但没有成功:我有一个月内每个交易日的 DAX 看涨期权和看跌期权数据。经过转换和一些计算后,我有以下 DataFrame: DaxOpt 。现在的目标是消除没有
我正在尝试做一些我认为应该是单行的事情,但我正在努力把它做好。 我有一个大数据框,我们称之为lg,还有一个小数据框,我们称之为sm。每个数据帧都有一个 start 和一个 end 列,以及多个其他列所
我有一个像这样的系列数据帧的数据帧: state1 state2 state3 ... sym1 sym
我有一个大约有 9k 行和 57 列的数据框,这是“df”。 我需要一个新的数据框:'df_final'- 对于“df”的每一行,我必须将每一行复制“x”次,并将每一行中的日期逐一增加,也就是“x”次
假设有一个 csv 文件如下: # data.csv 0,1,2,3,4 a,3.0,3.0,3.0,3.0,3.0 b,3.0,3.0,3.0,3.0,3.0 c,3.0,3.0,3.0,3.0,3
我只想知道是否有人对以下问题有更优雅的解决方案: 我有两个 Pandas DataFrame: import pandas as pd df1 = pd.DataFrame([[1, 2, 3], [
我有一个 pyspark 数据框,我需要将其转换为 python 字典。 下面的代码是可重现的: from pyspark.sql import Row rdd = sc.parallelize([R
我有一个 DataFrame,我想在 @chain 的帮助下对其进行处理。如何存储中间结果? using DataFrames, Chain df = DataFrame(a = [1,1,2,2,2
我有一个包含 3 列的 DataFrame,名为 :x :y 和 :z,它们是 Float64 类型。 :x 和 "y 在 (0,1) 上是 iid uniform 并且 z 是 x 和 y 的总和。
这个问题在这里已经有了答案: pyspark dataframe filter or include based on list (3 个答案) 关闭 2 年前。 只是想知道是否有任何有效的方法来过
我刚找到这个包FreqTables ,它允许人们轻松地从 DataFrames 构建频率表(我正在使用 DataFrames.jl)。 以下代码行返回一个频率表: df = CSV.read("exa
是否有一种快速的方法可以为 sort 指定自定义订单?/sort!在 Julia DataFrames 上? julia> using DataFrames julia> srand(1); juli
在 Python Pandas 和 R 中,可以轻松去除重复的列 - 只需加载数据、分配列名,然后选择那些不重复的列。 使用 Julia Dataframes 处理此类数据的最佳实践是什么?此处不允许
我是一名优秀的程序员,十分优秀!