Not that I know of.
I think something like this would work:
lsmestimate epoch*day "Day 1" [1, 1 1] [-1, 2 1],
"Day 2" [1, 1 2] [-1, 2 2],
"Day 3" [1, 1 3] [-1, 2 3],
"Day 4" [1, 1 4] [-1, 2 4],
"Day 5" [1, 1 5] [-1, 2 5],
"Day 6" [1, 1 6] [-1, 2 6],
"Day 7" [1, 1 7] [-1, 2 7]
/ at means adjust=bon stepdown adjdfe=row;
You could use AT=<value> to specify your desired value of WEIGHT0.
Or you can capture the lsmestimates in a SAS dataset using ODS OUTPUT, do any necessary pre-processing, and then use that dataset in the MULTTEST procedure; see
https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_multtest_sect026.htm
... View more