Это старая версия документа!
Continental Curst: Lower, Rudnik and Gao, 2003
Details
<data plot> Reference [wiki]: Rudnick, R. L., Gao, S. X. Composition of the continental crust, 2003 [ref] Data: bulk Input: ppm </data> Использовать Проверить
заголовок- краткое описание
статьяссылкакарточка- подробное описание
код- тест
Source
- require('ggplot');
- cmp <- read.csv("constants_continental_curst_compositions.csv", sep=";", stringsAsFactors=F);
- spdgrams.ree_continental_curst_lower <- function(ppm_data, el_order = NULL)
- {
- ns <- el_order;
- if (is.null(el_order))
- {
- ns <- c('Cs', 'Rb', 'Ba', 'Th', 'U', 'Nb', 'Ta', 'La', 'Ce', 'Pb', 'Pr',
- 'Sr', 'Nd', 'Zr', 'Hf', 'Sm', 'Eu', 'Gd', 'Tb', 'Dy', 'Y', 'Ho',
- 'Er', 'Tm', 'Yb', 'Lu');
- }
- pmsc <- c();
- for (n in ns)
- pmsc <- c(pmsc, subset(cmp, component == n)$lower);
- ds <- selectNames(ppm_data,c(paste0(ns,'_ppm')));
- names(ds) <- ns;
- ret <- c();
- values <- cbind(ppm_data$Name, rowApply(`/`,ds,pmsc));
- names(values)[1] <- 'Name';
- ret$values <- values;
- ret$grades <- ns;
- ret$labels <- c('REE', 'Sample/Continental curst, Lower');
- return(ret);
- }