CPANEL Procedure

PROC CPANEL Statement

  • PROC CPANEL <options>;

The PROC CPANEL statement invokes the procedure. You can specify the following options:

DATA=libref.data-table

names the input data table for PROC CPANEL to use. The default is the most recently created data table. libref.data-table is a two-level name, where

libref

refers to a collection of information that is defined in the LIBNAME statement and includes the library, which includes a path to the data, and a session identifier, which defaults to the active session but which can be explicitly defined in the LIBNAME statement. For more information about libref, see the section Using CAS Sessions and CAS Engine Librefs.

data-table

specifies the name of the input data table.

NOPART

prevents repartitioning of the data. Normally, the CPANEL procedure redistributes the data table so that observations for each cross section are not divided among multiple machines. Repartitioning the data makes model computations more efficient but has a cost in memory and computing cycles that are associated with redistribution. Specifying the NOPART option leaves the data distributed as they are, at the expense of less efficient model computations.

NOPRINT

suppresses all printed output.

PRINTALL

prints all available output.

In addition, any of the following MODEL statement options can be specified in the PROC CPANEL statement: CORRB, COVB, NOLABEL, and PRINTFIXED. When specified in the PROC CPANEL statement, these options apply globally to every MODEL statement. For a complete description of each of these options, see the section MODEL Statement.

Last updated: July 09, 2026