
Last chance! 50% off unlimited learning
Sale ends in
conditional_format_cell
via
sapply
to format a cell much like
Excel would.
conditional_format_table(input_table, numbers_below_this_get_scientific = 1e-04, numdigits_for_superlow_scientific = 1, numbers_above_this_get_scientific = 1e+07, numdigits_for_superhigh_scientific = 2, numdigits_inbetween_have_fixed_digits = 4)
signif
is used to make e.g. integers
appear as 0, 1, 2..output_table
The table, reformatted with cells of
class character
.
Matzke_2012_IBS
signif
, sprintf
test=1
input_table = adf(c(143514514514532, -42.235235, -42.0000000,
0.0000, 0.0001, 0.00001, 0.0000111))
conditional_format_table(input_table=input_table)
Run the code above in your browser using DataLab