I saw the following on one of your posts and other places. What is tibble? Is this the syntax and is the syntax always look like the following?
library(broman)
hexdf <- tibble::tribble(
~1
, ~2
, ~3
,
"1A", "15", "18",
"16", "1F", "13",
"1D", "19", "1B"
)
MM