# read all available filter data
# assumes that all files with ".txt" are filter-data files
# assumes that all files with exactly four columns have two replicate measurements that need
# to be averaged
# STEPS
# 1) clear the workspace
# 2) read .txt files
# 3) save collection of spectra to .rda file in data folder
library(photobiology)
library(dplyr)
rm(list = ls())
setwd("data-raw/Etola")
file.list <- list.files(pattern = "*.txt")
etola.lst <- list()
for (file.name in file.list) {
name <- sub(pattern=".txt", replacement="", x=file.name)
used <- grepl("used", name)
tmp.df <- read.table(file.name, header=TRUE)
if (ncol(tmp.df) == 4) {
tmp.df <- transmute(tmp.df, w.length = w.length.1,
Tfr = (transmittance.1 + transmittance.2) / 200)
} else if (ncol(tmp.df) == 2) {
tmp.df <- transmute(tmp.df, w.length = w.length, Tfr = transmittance / 100)
} else {
stop("ncol != 2 || ncol!=4")
}
tmp.df <- setFilterSpct(tmp.df, Tfr.type = "total")
tmp.df <- setFilterProperties(tmp.df,
Rfr.constant = 0.08,
thickness = 50e-6,
attenuation.mode = "absorption")
setWhatMeasured(tmp.df, paste("Clear low-density polyethylene (LD-PE) film; ", 50e-6, " m thick; ",
ifelse(used, "used", "new"), sep = ""))
clean(tmp.df)
etola.lst[[name]] <- tmp.df
}
etola.mspct <- filter_mspct(etola.lst)
names(etola.mspct) <- paste("Unbranded", names(etola.mspct), sep = "_")
setwd("../..")
save(etola.mspct, file = "data-raw/rda/etola.mspct.rda")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.