0byt3m1n1
Path:
C:
/
Users
/
Administrator
/
SYSTAT
/
SYSTAT_13
/
Gallery
/
[
Home
]
File: Bivariate Kernel and Normal Density with Tile.syc
REM This item was created using ADMIT, with GREQ as the X-variable and, GREV as the Y-variable. TOKEN TOKEN &message / TYPE = MESSAGE PROMPT = 'This item creates a Bivariate, Kernel and Normal Density with TILE on the Z-axis.', IMMEDIATE TOKEN &xvariable / TYPE = VARIABLE PROMPT = 'Select an X-variable.', IMMEDIATE TOKEN &yvariable / TYPE = VARIABLE PROMPT = 'Select a Y-variable.', IMMEDIATE BEGIN DENSITY . * &yvariable * &xvariable / KERNEL CUT = 50, TITLE = 'Bivariate Kernel Density with Tile' AXES = CORNER ZGRID, FCOL = GRAY HEIGHT = 4 WIDTH = 4 ALTITUDE = 4 LOC = {-3, 0} FACET XY DEPTH 4 IN DENSITY . * &yvariable * &xvariable / KERNEL TILE LEGEND = NONE, SCALE = NONE LOC = {-3, 0} DENSITY . * &yvariable * &xvariable / NORMAL CUT = 50 AXES = CORNER, ZGRID FCOL = GRAY HEIGHT = 4 WIDTH = 4 ALTITUDE = 4 LOC = {3, 0} FACET XY DEPTH 4 IN DENSITY . * &yvariable * &xvariable / NORMAL TITLE = 'Bivariate, Normal Density with Tile' TILE LEGEND = NONE SCALE = NONE, LOC = {3, 0} END FACET DEPTH TOKEN