當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R pluton 鈈同位素成分批次


R語言 pluton 位於 cluster 包(package)。

說明

pluton DataFrame 有 45 行和 4 列,包含 45 個鈈批次的同位素組成百分比。

用法

data(pluton)

格式

該 DataFrame 包含以下列:

普238

的百分比始終小於 2%。

普239

的百分比,通常在 60% 到 80% 之間(來自鈾的中子捕獲, )。

普240

鈈 240 同位素的百分比。

普241

鈈 241 同位素的百分比。

細節

請注意,鈈~242 的百分比可以根據其他四個百分比計算出來,請參見示例。

在下麵的參考文獻中解釋了為什麽非常需要將這些鈈片組合成三組相似大小的組。

例子

data(pluton)

hist(apply(pluton,1,sum), col = "gray") # between 94% and 100%
pu5 <- pluton
pu5$Pu242 <- 100 - apply(pluton,1,sum) # the remaining isotope.
pairs(pu5)

來源

可用為‘pluton.dat” 來自安特衛普大學檔案館,“..../數據集/clusplot-examples.tar.gz', 不再可用。

參考

Rousseeuw, P.J. and Kaufman, L and Trauwaert, E. (1996) Fuzzy clustering using scatter matrices, Computational Statistics and Data Analysis 23(1), 135-151.

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Isotopic Composition Plutonium Batches。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。