Skip to Content
Rクックブック 第2版
book

Rクックブック 第2版

by J.D. Long, Paul Teetor, 大橋 真也, 木下 哲也
January 2020
Intermediate to advanced
584 pages
7h 18m
Japanese
O'Reilly Japan, Inc.
Content preview from Rクックブック 第2版

13章高度な数値計算と統計

本章では、応用統計学の大学院課程の1年生か2年生で学ぶような高度な手法を紹介します。

本章のレシピのほとんどは、標準ディストリビューションに含まれる関数を使っています。Rは、アドオンパッケージによって世界で最も高度な統計学的手法の一部を提供しています。そのため、現在は統計学の研究者はRを共通語として使い、最新の研究を紹介しています。最新の統計学的手法を探すなら、CRANとそのWebページで利用できる実装を調べることをお勧めします。

レシピ13.1 単一パラメータ関数の最小値または最大値を求める

問題

単一パラメータ関数fがある。fが最小または最大になる点を見つけたい。

解決策

単一パラメータ関数の最小を求めるには、optimizeを使います。関数を最小化するように指定し、定義域(x)の境界を指定します。

optimize(f, lower = lowerBound, upper = upperBound)

関数の最大を求めるには、maximum = TRUEを指定します。

optimize(f,
         lower = lowerBound,
         upper = upperBound,
         maximum = TRUE)

解説

optimize関数は、1つの引数の関数を扱えます。optimize関数には、調べる領域の範囲を定めるxの上限と下限が必要です。次の例は多項式3x4-2x3+3x2-4x+5の最小点を求めます。

f <- function(x)
  3 * x ^ 4 - 2 * x ^ 3 + 3 * x ^ 2 - 4 * x + 5
optimize(f, lower = -20, upper = 20) ## $minimum ## ...
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

Rクイックリファレンス 第2版

Rクイックリファレンス 第2版

Joseph Adler, 大橋 真也, 木下 哲也
ハイパフォーマンスPython 第2版

ハイパフォーマンスPython 第2版

Micha Gorelick, Ian Ozsvald, 中山 光樹
Rではじめるデータサイエンス 第2版

Rではじめるデータサイエンス 第2版

Hadley Wickham, Mine Çetinkaya-Rundel, Garrett Grolemund, 大橋 真也
Rではじめるデータサイエンス

Rではじめるデータサイエンス

Hadley Wickham, Garrett Grolemund, 黒川 利明, 大橋 真也

Publisher Resources

ISBN: 9784873118857Other