Skip to Content
R 语言经典实例(原书第 2 版)
book

R 语言经典实例(原书第 2 版)

by J.D. Long, Paul Teetor
June 2020
Beginner to intermediate
522 pages
9h 6m
Chinese
China Machine Press
Content preview from R 语言经典实例(原书第 2 版)
368
12
df %>%
mutate(max_val = pmax(a,b,c))
#> a b c max_val
#> 1 1 2 0 2
#> 2 5 3 4 5
#> 3 8 7 9 9
我们可以看到新列 max_val 包含三个输入列中的逐行最大值。
12.8.4 另请参阅
有关循环规则的更多信息,请参阅 5.3 节。
12.9 生成多个变量的组合
12.9.1 问题
有两个或多个变量。你想要生成这些水平的所有组合,也称为它们的
笛卡儿
积。
12.9.2 解决方案
使用 expand.grid 函数。这里 f g 是向量:
expand.grid(f, g)
12.9.3 讨论
以下代码创建了两个向量
sides 代表硬币的两面,而 faces 代表一个骰子的六个
面(骰子上的小斑点称为
):
sides <- c("Heads", "Tails")
faces <- c("1 pip", paste(2:6, "pips"))
可以使用 expand.grid 找到掷一次骰子和掷一枚硬币的结果的所有组合:
expand.grid(faces, sides)
#> Var1 Var2
#> 1 1 pip Heads
#> 2 2 pips Heads
#> 3 3 pips Heads
#> 4 4 pips Heads
#> 5 5 pips Heads
#> 6 6 pips Heads
#> 7 1 pip Tails
#> 8 2 pips Tails
#> 9 3 pips Tails
#> 10 4 pips ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Istio 学习指南

Istio 学习指南

Lee Calcote, Zack Butcher
数据压缩入门

数据压缩入门

Colt McAnlis, Aleks Haecky
Python数据处理

Python数据处理

Jacqueline Kazil, Katharine Jarmul

Publisher Resources

ISBN: 9787111656814