Colleagues,
I attempted to copy data from the clipboard and use rcompanion's
transformTukey command in an attempt to normalize the dataset.
data = read.delim("clipboard")
head(data)
Flatness
1 7e-04
2 1e-03
3 8e-04
4 5e-04
5 5e-04
6 5e-04
All data are greater than 0.
Data set is heavily right skewed
library(rcompanion) trans_data <- transformTukey(data)
Error in is.infinite(TRANS) : default method not implemented for type 'list' Why is this occurring? Thomas Subia