The DISPLAYSTATS=ALL or DISPLAYSTATS=(N) options in the VBOX statement in PROC SGPANEL or PROC SGPLOT might display the "Knoppar" text rather than "Nobs" as the label for the count values.
This problem occurs when you run SAS® 9.4M8 (TS1M8), SAS® Viya® 3.5, SAS® Viya® Long Term Support 2025.03, or SAS® Viya® Stable 2025.10 with a Swedish locale.
To circumvent this issue, calculate the count values and use the COLAXISTABLE statement in PROC SGPANEL or the XAXISTABLE statement in PROC SGPLOT to display the values.
Here is an example:
proc sort data=sashelp.cars out=cars;
by origin;
run;
proc freq data=cars noprint;
by origin;
tables type / out=num;
run;
data plot;
set cars num;
run;
proc sgpanel data=plot;
panelby origin / novarname;
vbox mpg_city / category=type;
colaxistable count / label='Nobs' position=bottom;
run;
proc sgplot data=plot;
vbox mpg_city / category=type;
xaxistable count / label='Nobs' location=inside position=bottom;
run;