A: Yes. The factor files have one record per replicate. The records must be in the same order as the physical order of the replicate weights on the input file used to create the data (VAR) file. For example, suppose your replicate weights are named RWT1-RWT100, but that they were sorted in alphanumeric order: RWT1, RWT10, RWT100, RWT11, etc. The factor files must be in this order also. Replicate weights are listed on the Attach Factors screen by their physical order in the data file. Both FPC factors and JKn factors must appear in this same order on the external files.
A: This message is issued in logistic regression when the convergence criterion for parameter estimates is not met in the specified maximum number of iterations. This could be caused by the following:
In the Regression Request/Output Control, check the boxes for Iteration History and Replicate Coefficients to get a detailed report on how the parameter estimates are changing.
A: One alternative is to use the following code to create your SAS transport files. This is code for creating a SAS transport file (with a single member) named c:\export\wesvar.xpt from the sd2 file c:\input\data.sd2:
options validvarname=v6;
libname in1 'c:\input';
libname out1 xport 'c:\export\wesvar.xpt';
proc copy in=in1 out=out1;
select data;
run;
The statement “options validvarname=v6;” will cause SAS to generate unique 8-character names for variables with names longer than 8 characters. The VALIDVARNAME option is only valid using SAS Version 7 or later. It is not recognized (or needed) by earlier versions of SAS.
A: SAS value labels are not imported in WesVar, even if they were originally created in WesVar and exported to SAS. Use the Relabel utility.
A: VARUNITS must be numbered consecutively starting at 1 in each VARSTRAT. The number of VARUNITS can differ from one VARSTRAT to another.
A: WesVar does not allow the JKn method to be used unless there are at least two PSUs in every stratum. To use the JKn method, you would have to collapse any stratum with one PSU with another stratum.
A: Yes.
A: WesVar cannot read 64-bit SAS files. WesVar can only read 32-bit SAS files. The best way to ensure the data set is 32-bit is to specify the data set option OUTREP=WINDOWS_32 when creating the data set.