SPSS Statistics GPL显示多编码变量的百分比条

时间:2014-07-25 12:43:16

标签: spss

我正在尝试创建一个频率图表来显示多响应集BDecideCX1到BDecideCX9的百分比,但百分比是基于代码总数而不是案例总数。我尝试使用BASE命令在下面的ELEMENT上的不同基础上重新进行,但没有成功。任何帮助非常感谢。

TEMP.
SELECT IF BDecideCX1>=0.
MRSETS
 /MDGROUP NAME=$temp
 VARIABLES = BDecideCX1 to BDecideCX9
 VALUE=1
 LABEL="Who was involved in deciding how to spend the PE and sport premium?".
GGRAPH
 /GRAPHDATASET NAME="graphdataset" VARIABLES=$temp RESPONSES() [NAME="RESPONSES"]     
    MISSING=LISTWISE REPORTMISSING=NO
 /GRAPHSPEC SOURCE=INLINE TEMPLATE=["TCharts\FreqPurple.SGT"].
 BEGIN GPL
 SOURCE: s = userSource(id("graphdataset"))
 DATA:   temp=col(source(s), name("$temp"), unit.category())
 DATA: responses=col(source(s), name("RESPONSES"))
 SCALE: linear(dim(2), include(0))
 GUIDE: text.title(label("Who was involved in deciding how to spend the PE and sport premium? FREQUENCY"))
 GUIDE: axis(dim(2), label("%"))
 GUIDE: axis(dim(1), label("Who was involved in deciding how to spend the PE and sport premium?"))
 ELEMENT: interval(position(summary.percent(temp*responses)))
 END GPL.

0 个答案:

没有答案