Skip to Content
Rパッケージ開発入門 ―テスト、文書化、コード共有の手法を学ぶ
book

Rパッケージ開発入門 ―テスト、文書化、コード共有の手法を学ぶ

by Hadley Wickham, 瀬戸山 雅人, 石井 弓美子, 古畠 敦
February 2016
Intermediate to advanced
232 pages
4h 39m
Japanese
O'Reilly Japan, Inc.
Content preview from Rパッケージ開発入門 ―テスト、文書化、コード共有の手法を学ぶ
118
 
#' @useDynLib mypackage add_
add <- function(x, y) .Call(add_, x, y)
.Call()
の最初の引数
add_
は、どこから来たのでしょうか。それは
@useDynLib
に由来します。
NAMESPACE
に、以下のような設定が
1
行あるはずです。
useDynLib(mypackage, add_)
このディレクティブは、
C
の関数への参照となる
add_
というオブジェクトを作るように
R
に指
示しています。
mypackage:::add_
#> $name
#> [1] "add_"
#>
#> $address
#> <pointer: 0x107be3f40>
#> $package
#> NULL
#>
#> attr(,"class")
#> [1] "NativeSymbolInfo"
.Call()
は、
C
の関数へのポインタを取得し、それを呼び出します。すべての
R
のオブジェクト
は同じ
C
の型(
SEXP
)を持っているため、引数は期待される型に合わせておかなければいけませ
ん。
R
の関数や
C
の関数でその処理を行うか、あるいは、不適切な入力が誤って渡されたときに、
毎回
R
がクラッシュしてしまうことを単に受け入れましょう。
.Call()
インターフェースを使うときに、最も複雑な部分はメモリ管理です。
R
で扱うレベルの
データ構造を使う場合、ガベージコレクタによってその分のメモリが解放されてしまわないように
するため
PROTECT()
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, 大橋 真也, 木下 哲也
Haskellによる並列・並行プログラミング

Haskellによる並列・並行プログラミング

Simon Marlow, 山下 伸夫, 山本 和彦, 田中 英行
Rクックブック 第2版

Rクックブック 第2版

J.D. Long, Paul Teetor, 大橋 真也, 木下 哲也

Publisher Resources

ISBN: 9784873117591Other