Thanks for the heads-up. I have updated the appropriate equations to match the Lindbloom page. The resulting colors look pretty good!
Example Color Book Page: generated within R
More information about formatting options
Updates
Thanks for the heads-up. I have updated the appropriate equations to match the Lindbloom page. The resulting colors look pretty good!
xyplot(V ~ C | factor(H, levels=c('2.5Y', '10YR', '7.5YR', '5YR', '2.5YR', '10R')),
main="UnCommon Soil Colors",
data=all, subset=H %in% c('2.5Y', '10YR', '7.5YR', '5YR', '2.5YR', '10R') & V > 1,
as.table=TRUE, subscripts=TRUE, xlab='Chroma', ylab='Value',
panel=function(x, y, subscripts, ...)
{
panel.xyplot(x, y, pch=15, cex=1, col=plot_cols[subscripts])
}
)