- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了类似的问题 here ,但我尝试过的所有解决方案都没有奏效。
给定一个这样的表:
Date Exercise Category Weight Reps EstMax RepxWeight Note
4/2/16 Deadlift Legs 135 7 166.4685 7x135 easy
4/2/16 Deadlift Legs 135 7 166.4685 7x135 kinda easy
4/2/16 Deadlift Legs 135 7 166.4685 7x135 tired
4/2/16 Bench Press Chest 95 5 110.8175 5x95 hard
4/2/16 Bench Press Chest 135 2 143.991 2x135 not hard
4/9/16 Bench Press Chest 135 2 143.991 2x135 a little hard
4/9/16 Bench Press Chest 135 2 143.991 2x135 super tired
4/18/16 Deadlift Legs 155 8 196.292 8x155 …
4/18/16 Deadlift Legs 155 5 180.8075 5x155 bad day
5/8/16 Deadlift Legs 185 3 203.4815 3x185 good day
5/8/16 Deadlift Legs 185 3 203.4815 3x185 felt easy
5/8/16 Bench Press Chest 115 4 130.318 4x115 easy
5/8/16 Bench Press Chest 115 4 130.318 4x115 hard
aggregate
获取具有
max
的行基于多个其他列(例如
EstMax
和
Date
)的特定列(例如
Exercise
)的值,但也保留该行中的所有其他列。如果多个条目具有相同的最大值,则取第一个条目。
Date Exercise Category Weight Reps EstMax RepxWeight Note
4/2/16 Deadlift Legs 135 7 166.4685 7x135 easy
4/2/16 Bench Press Chest 135 2 143.991 2x135 not hard
4/9/16 Bench Press Chest 135 2 143.991 2x135 a little hard
4/18/16 Deadlift Legs 155 8 196.292 8x155 …
5/8/16 Deadlift Legs 185 3 203.4815 3x185 good day
5/8/16 Bench Press Chest 115 4 130.318 4x115 hard
data <- structure(list(Date = structure(c(2L, 2L, 2L, 2L, 2L, 3L, 3L,
1L, 1L, 4L, 4L, 4L, 4L), .Label = c("4/18/16", "4/2/16", "4/9/16",
"5/8/16"), class = "factor"), Exercise = structure(c(2L, 2L,
2L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 1L, 1L), .Label = c("Bench Press",
"Deadlift"), class = "factor"), Category = structure(c(2L, 2L,
2L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 1L, 1L), .Label = c("Chest",
"Legs"), class = "factor"), Weight = c(135L, 135L, 135L, 95L,
135L, 135L, 135L, 155L, 155L, 185L, 185L, 115L, 115L), Reps = c(7L,
7L, 7L, 5L, 2L, 2L, 2L, 8L, 5L, 3L, 3L, 4L, 4L), EstMax = c(166.4685,
166.4685, 166.4685, 110.8175, 143.991, 143.991, 143.991, 196.292,
180.8075, 203.4815, 203.4815, 130.318, 130.318), RepxWeight = structure(c(6L,
6L, 6L, 5L, 1L, 1L, 1L, 7L, 4L, 2L, 2L, 3L, 3L), .Label = c("2x135",
"3x185", "4x115", "5x155", "5x95", "7x135", "8x155"), class = "factor"),
Note = structure(c(4L, 8L, 11L, 7L, 9L, 2L, 10L, 1L, 3L,
6L, 5L, 4L, 7L), .Label = c("…", "a little hard", "bad day",
"easy", "felt easy", "good day", "hard", "kinda easy", "not hard",
"super tired", "tired"), class = "factor")), .Names = c("Date",
"Exercise", "Category", "Weight", "Reps", "EstMax", "RepxWeight",
"Note"), class = "data.frame", row.names = c(NA, -13L))
# base R
aggregate(EstMax ~ Date + Exercise, data = data, FUN = max)
# Date Exercise EstMax
# 1 4/2/16 Bench Press 143.9910
# 2 4/9/16 Bench Press 143.9910
# 3 5/8/16 Bench Press 130.3180
# 4 4/18/16 Deadlift 196.2920
# 5 4/2/16 Deadlift 166.4685
# 6 5/8/16 Deadlift 203.4815
aggregate(EstMax ~ Date + Exercise + RepxWeight + Note, data = data, FUN = max)
# Date Exercise RepxWeight Note EstMax
# 1 4/18/16 Deadlift 8x155 … 196.2920
# 2 4/9/16 Bench Press 2x135 a little hard 143.9910
# 3 4/18/16 Deadlift 5x155 bad day 180.8075
# 4 5/8/16 Bench Press 4x115 easy 130.3180
# 5 4/2/16 Deadlift 7x135 easy 166.4685
# 6 5/8/16 Deadlift 3x185 felt easy 203.4815
# 7 5/8/16 Deadlift 3x185 good day 203.4815
# 8 5/8/16 Bench Press 4x115 hard 130.3180
# 9 4/2/16 Bench Press 5x95 hard 110.8175
# 10 4/2/16 Deadlift 7x135 kinda easy 166.4685
# 11 4/2/16 Bench Press 2x135 not hard 143.9910
# 12 4/9/16 Bench Press 2x135 super tired 143.9910
# 13 4/2/16 Deadlift 7x135 tired 166.4685
# data table
library("data.table")
data_dt <- data.table(data)
data_dt[ , max(EstMax), by = c("Date", "Exercise")]
# Date Exercise V1
# 1: 4/2/16 Deadlift 166.4685
# 2: 4/2/16 Bench Press 143.9910
# 3: 4/9/16 Bench Press 143.9910
# 4: 4/18/16 Deadlift 196.2920
# 5: 5/8/16 Deadlift 203.4815
# 6: 5/8/16 Bench Press 130.3180
data_dt[, max(EstMax), .(Date, Exercise, Weight, Reps, RepxWeight, Note)]
# Date Exercise Weight Reps RepxWeight Note V1
# 1: 4/2/16 Deadlift 135 7 7x135 easy 166.4685
# 2: 4/2/16 Deadlift 135 7 7x135 kinda easy 166.4685
# 3: 4/2/16 Deadlift 135 7 7x135 tired 166.4685
# 4: 4/2/16 Bench Press 95 5 5x95 hard 110.8175
# 5: 4/2/16 Bench Press 135 2 2x135 not hard 143.9910
# 6: 4/9/16 Bench Press 135 2 2x135 a little hard 143.9910
# 7: 4/9/16 Bench Press 135 2 2x135 super tired 143.9910
# 8: 4/18/16 Deadlift 155 8 8x155 … 196.2920
# 9: 4/18/16 Deadlift 155 5 5x155 bad day 180.8075
# 10: 5/8/16 Deadlift 185 3 3x185 good day 203.4815
# 11: 5/8/16 Deadlift 185 3 3x185 felt easy 203.4815
# 12: 5/8/16 Bench Press 115 4 4x115 easy 130.3180
# 13: 5/8/16 Bench Press 115 4 4x115 hard 130.3180
which.max()
功能可能会有所帮助,但无法弄清楚如何将其应用于此。
最佳答案
我知道您正在寻求基本的 R 解决方案,但与此同时,这里有一个 dplyr
一:
library(dplyr)
data %>%
group_by(Date, Exercise) %>%
slice(which.max(EstMax))
# # A tibble: 6 x 8
# # Groups: Date, Exercise [6]
# Date Exercise Category Weight Reps EstMax RepxWeight Note
# <fctr> <fctr> <fctr> <int> <int> <dbl> <fctr> <fctr>
# 1 4/18/16 Deadlift Legs 155 8 196.2920 8x155 …
# 2 4/2/16 Bench Press Chest 135 2 143.9910 2x135 not hard
# 3 4/2/16 Deadlift Legs 135 7 166.4685 7x135 easy
# 4 4/9/16 Bench Press Chest 135 2 143.9910 2x135 a little hard
# 5 5/8/16 Bench Press Chest 115 4 130.3180 4x115 easy
# 6 5/8/16 Deadlift Legs 185 3 203.4815 3x185 good day
data.table
不是我的强项,但为了完整起见,这是我的尝试:
library(data.table)
setDT(data)[, .SD[which.max(EstMax)], by = .(Date, Exercise)]
# Date Exercise Category Weight Reps EstMax RepxWeight Note
# 1: 4/2/16 Deadlift Legs 135 7 166.4685 7x135 easy
# 2: 4/2/16 Bench Press Chest 135 2 143.9910 2x135 not hard
# 3: 4/9/16 Bench Press Chest 135 2 143.9910 2x135 a little hard
# 4: 4/18/16 Deadlift Legs 155 8 196.2920 8x155 …
# 5: 5/8/16 Deadlift Legs 185 3 203.4815 3x185 good day
# 6: 5/8/16 Bench Press Chest 115 4 130.3180 4x115 easy
关于R:如何在保留其他列的同时聚合一些列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47418127/
我有一个 Cassandra 集群,里面有 4 个表和数据。 我想使用聚合函数(sum,max ...)发出请求,但我在这里读到这是不可能的: http://www.datastax.com/docu
我有以下两张表 Table: items ID | TITLE 249 | One 250 | Two 251 | Three 我投票给这些: Table: votes VID | IID | u
这个问题在这里已经有了答案: Update MongoDB field using value of another field (12 个答案) 关闭 3 年前。 我想根据另一个“源”集合的文档中
我的收藏包含以下文件。我想使用聚合来计算里面有多少客户,但我遇到了一些问题。我可以获得总行数,但不能获得总(唯一)客户。 [{ _id: "n001", channel: "Kalip
我有下表 Id Letter 1001 A 1001 H 1001 H 1001 H 1001 B 1001 H 1001 H 1001
得到一列的表 ABC。 “创建”的日期列。所以样本值就像; created 2009-06-18 13:56:00 2009-06-18 12:56:00 2009-06-17 14:02:0
我有一个带有数组字段的集合: {[ name:String buyPrice:Int sellPrice:Int ]} 我试图找到最低和最高买入/卖出价格。在某些条目中,买入或卖出价格为零
我有以下问题: 在我的 mongo db 中,我有以下结构: { "instanceId": "12", "eventId": "0-1b", "activityType":
下面给出的是我要在其上触发聚合查询的 Elasticsearch 文档。 { "id": 1, "attributes": [ { "fieldId": 1,
我正在使用 Django 的 aggregate query expression总计一些值。最终值是一个除法表达式,有时可能以零作为分母。如果是这种情况,我需要一种方法来逃避,以便它只返回 0。 我
我正在学习核心数据,特别是聚合。 当前我想要做的事情:计算表中在某些条件上具有逆关系的多对关系的记录数。 目前我正在这样做: NSExpression *ex = [NSExpression expr
我需要有关 Delphi 中的 ClientDatasets 的一些帮助。 我想要实现的是一个显示客户的网格,其中一列显示每个客户的订单数量。我将 ClientDataset 放在表单上并从 Delp
我的集合有 10M 个文档,并且有一个名为 movieId 的字段;该文档具有以下结构: { "_id" : ObjectId("589bed43e3d78e89bfd9b779"), "us
这个问题已经有答案了: What is the difference between association, aggregation and composition? (21 个回答) 已关闭 9
我在 elasticsearch 中有一些类似于这些示例的文档: { "id": ">", "list": [ "a", "b", "c" ] } { "id"
我正在做一些聚合。但是结果完全不是我所期望的,似乎它们没有聚合索引中与我的查询匹配的所有文档,在这种情况下 - 它有什么好处? 例如,首先我做这个查询: {"index":"datalayer","t
假设我在 ES 中有这些数据。 | KEY | value | |:-----------|------------:| | A |
可能在我的文档中,我有一个被分析的文本字段。我只是在ElasticSearch AggregationAPI中迷路了。我需要2种不同情况的支持: 情况A)结果是带有计数标记(条款)的篮子下降。 情况B
我正在为网上商店构建多面过滤功能,如下所示: Filter on Brand: [ ] LG (10) [ ] Apple (5) [ ] HTC (3) Filter on OS: [ ] Andr
我有一个父/子关系并且正在搜索 child 。 是否可以在父属性上创建聚合? 例如parent 是 POST,children 是 COMMENT。如果父项具有“类别”属性,是否可以搜索 COMMEN
我是一名优秀的程序员,十分优秀!