用spss软件分析数据确定函数式的问题

2024-05-04 15:13

1. 用spss软件分析数据确定函数式的问题

R方统计量衡量在样本内预测因变量值的回归是否成功,一般超过0.85都是成功的,
F统计量检验回归中所有的系数是否为零(除了常数或截距),
统计显著性(sig)就是出现目前样本这结果的机率。
Y=a*exp(bX)或ln(Y)=ln(a)+bX,其中exp为自然对数的底数,ln为以e为底的自然对数,
下面给出1到33间的模拟值,函数关系为ln(Y)=ln(12.6)-0.222X,即a=12.6,b=-0.222
X(时间) Y(植株中残留量)       
1 10.09153359
2 8.082464302
3 6.473369841
4 5.184621365
5 4.15244291
6 3.325755326
7 2.663648538
8 2.13335704
9 1.70863843133
10 1.368474771
11 1.09603247
12 0.877829245
13 0.70306693
14 0.563097106
15 0.450993124
16 0.361207322
17 0.289296494
18 0.231702007
19 0.185573697
20 0.148628825
21 0.11903911
22 0.095340252
23 0.076359473
24 0.061157475
25 0.048981961
26 0.039230405
27 0.031420234
28 0.025164948
29 0.020154994
30 0.016142444
31 0.012928732
32 0.01035482
33 0.008293334

用spss软件分析数据确定函数式的问题

2. 关于spss中if函数的用法

不用if,先保存一个备份,用Transform->Recode into same variable...,里面设置新旧值1>0,1->2,2->3,3->5就行了。

3. 日期型变量不能直接参与运算,必须使用有关函数将其转变为数值型变量后才能进行运算.spss中怎样转换?

如果需要在保留形参的值不变的前提下(可能另有他用),但是需要形参的值参与运算并可能被改变时,就需要定义局部变量代替形参进行运算
如果形参的值使用后被改变并不会造成一些不必要的错误时,可以直接使用形参参与运算

日期型变量不能直接参与运算,必须使用有关函数将其转变为数值型变量后才能进行运算.spss中怎样转换?

4. 用spss做因子分析时得到的因子得分矩阵代表怎样的函数

保存因子得分,之后会在原数据最后保存生成3列因子得分,假设为a1 a2 a3 代表3个因子然后根据因子分析得出三个因子的特征根值,分别计算粗3个因子的权重

5. 谁有SPSS 中的函数表

全份SPSS函数表(SPSS Functions),可以到下面的网址下载。
http://www.edb.utexas.edu/faculty/fouladi/e384lec7f.pdf

全文是英文来的,目前只找到这一份,资料有点旧,但胜在全面。

这资料是美国德克萨斯州大学奥斯汀分校(University of Texas at Austin)教育心理学系助理教授(Assistant Professor of the Department of Educational Psychology) Rachel Tanya Fouladi (Ph.D., University of British Columbia, 1996)在2000年秋季课程「SPSS数据分析」(EDP 384: Data Analysis Using SPSS)课堂上所发放的讲义。

由於至今已过了6年,SPSS版本不断更新,提供更多功能;这份资料所引的函数数目「可能」会有所遗漏,(「可能」未能把最新版本SPSS新增的函数纳入其中),请读者注意。



由於篇幅所限,在这边只贴出上述资料中最常用的几大类:
1.Logical functions逻辑函数
2.Missing value functions缺失值函数
3.Arithmetic functions算术函数
4.Statistical functions统计函数
5.Random variable functions随机变量函数


1. Logical Functions

ANY(test,value[,value,...]) Logical. Returns 1 or true if the value of test
matches any of the subsequent values; returns 0 or false otherwise. This
function requires two or more arguments.

RANGE(test,lo,hi[,lo,hi,...]) Logical. Returns 1 or true if test is within any of the
inclusive range(s) defined by the lo, hi pairs. Arguments must be all numeric
or all strings of the same length, and each of the lo, hi pairs must be ordered
with lo <= hi.



2. Missing Value Functions

NMISS(variable[,...]) Numeric. Returns a count of the arguments that have
missing values. This function requires one or more arguments, which should
be variable names in the working data file.

MISSING(variable) Logical. Returns 1 or true if variable has a missing value.
The argument should be a variable name in the working data file.

SYSMIS(numvar) Logical. Returns 1 or true if the value of numvar is systemmissing.
The argument numvar must be the name of a numeric variable in
the working data file.

VALUE(variable) Numeric or string. Returns the value of variable, ignoring
user-missing value definitions for variable, which must be a variable name in
the working data file.



3. Arithmetic Functions

ABS(numexpr) Numeric. Returns the absolute value of numexpr, which must
be numeric.

ARSIN(numexpr) Numeric. Returns the inverse sine, in radians, of numexpr,
which must evaluate to a numeric value between -1 and +1.

ARTAN(numexpr) Numeric. Returns the inverse tangent, in radians, of
numexpr, which must be numeric.

COS(radians) Numeric. Returns the cosine of radians, which must be a
numeric value, measured in radians.

EXP(numexpr) Numeric. Returns e raised to the power numexpr, where e is
the base of the natural logarithms and numexpr is numeric. Large values of
numexpr may produce results that exceed the capacity of the machine.

LN(numexpr) Numeric. Returns the base-e logarithm of numexpr, which must
be numeric and greater than 0.

LG10(numexpr) Numeric. Returns the base-10 logarithm of numexpr, which
must be numeric and greater than 0.

MOD(numexpr,modulus) Numeric. Returns the remainder when numexpr is
divided by modulus. Both arguments must be numeric, and modulus must
not be 0.

RND(numexpr) Numeric. Returns the integer that results from rounding
numexpr, which must be numeric. Numbers ending in .5 exactly are rounded
away from 0.

SIN(radians) Numeric. Returns the sine of radians, which must be a numeric
value, measured in radians.

SQRT(numexpr) Numeric. Returns the positive square root of numexpr, which
must be numeric and not negative.

TRUNC(numexpr) Numeric. Returns the value of numexpr truncated to an
integer (toward 0).



4. Statistical Functions

CFVAR(numexpr,numexpr[,...]) Numeric. Returns the coefficient of variation
(the standard deviation divided by the mean) of its arguments that have valid
values. This function requires two or more arguments, which must be
numeric. You can specify a minimum number of valid arguments for this
function to be evaluated.

LAG(variable) Numeric or string. Returns the value of variable for the previous
case in the data file. Returns system-missing (numeric variables) or blank
(string variables) for the first case.

LAG(variable,ncases) Numeric or string. Returns the value of variable for the
case that is ncases earlier in the file. Returns system-missing (numeric
variables) or blank (string variables) for the first ncases cases.

MAX(value,value[,...]) Numeric or string. Returns the maximum value of its
arguments that have valid values. This function requires two or more
arguments. You can specify a minimum number of valid arguments for this
function to be evaluated.

MEAN(numexpr,numexpr[,...]) Numeric. Returns the arithmetic mean of its
arguments that have valid values. This function requires two or more
arguments, which must be numeric. You can specify a minimum number of
valid arguments for this function to be evaluated.

MIN(value,value[,...]) Numeric or string. Returns the minimum value of its
arguments that have valid values. This function requires two or more
arguments. You can specify a minimum number of valid arguments for this
function to be evaluated.

NVALID(variable[,...]) Numeric. Returns a count of the arguments that have
valid, nonmissing values. This function requires one or more arguments,
which should be variable names in the working data file.

SD(numexpr,numexpr[,...]) Numeric. Returns the standard deviation of its
arguments that have valid values. This function requires two or more
arguments, which must be numeric. You can specify a minimum number of
valid arguments for this function to be evaluated.

SUM(numexpr,numexpr[,...]) Numeric. Returns the sum of its arguments that
have valid values. This function requires two or more arguments, which must
be numeric. You can specify a minimum number of valid arguments for this
function to be evaluated.

VARIANCE(numexpr,numexpr[,...]) Numeric. Returns the variance of its
arguments that have valid values. This function requires two or more
arguments, which must be numeric. You can specify a minimum number of
valid arguments for this function to be evaluated.



5. Random Variable Functions

NORMAL(stddev) Numeric. Returns a normally distributed pseudo-random
number from a distribution with mean 0 and standard deviation stddev, which
must be a positive number. You can repeat the sequence of pseudo-random
numbers by setting a seed in the Preferences dialog box before each
sequence.

RV.BERNOULLI(prob) Numeric. Returns a random value from a Bernoulli
distribution with the specified probability parameter prob.

RV.BETA(shape1, shape2) Numeric. Returns a random value from a beta
distribution with the specified shape parameters.

RV.BINOM(n, prob) Numeric. Returns a random value from a binomial
distribution with the specified number of trials and probability parameter.

RV.CAUCHY(loc, scale) Numeric. Returns a random value from a Cauchy
distribution with the specified location and scale parameters.

RV.CHISQ(df) Numeric. Returns a random value from a chi-square distribution
with the specified degrees of freedom df.

RV.EXP(shape) Numeric. Returns a random value from an exponential
distribution with the specified shape parameter.

RV.F(df1, df2) Numeric. Returns a random value from an F distribution with the
specified degrees of freedom df1 and df2.

RV.GAMMA(shape, scale) Numeric. Returns a random value from a gamma
distribution with the specified shape and scale parameters.

RV.GEOM(prob) Numeric. Returns a random value from a geometric
distribution with the specified probability parameter.

RV.HYPER(total, sample, hits) Numeric. Returns a random value from a
hypergeometric distribution with the specified parameters.

RV.LAPLACE(mean, scale) Numeric. Returns a random value from a Laplace
distribution with the specified mean and scale parameters.

RV.LOGISTIC(mean, scale) Numeric. Returns a random value from a logistic
distribution with the specified mean and scale parameters.

RV.LNORMAL(a, b) Numeric. Returns a random value from a log-normal
distribution with the specified parameters.

RV.NEGBIN(threshold, prob) Numeric. Returns a random value from a
negative binomial distribution with the specified threshold and probability
parameters.

RV.NORMAL(mean, stddev) Numeric. Returns a random value from a normal
distribution with the specified mean and standard deviation.

RV.PARETO(threshold, shape) Numeric. Returns a random value from a
Pareto distribution with the specified threshold and shape parameters.

RV.POISSON(mean) Numeric. Returns a random value from a Poisson
distribution with the specified mean or rate parameter.

RV.T(df) Numeric. Returns a random value from a Student’s t distribution with
the specified degrees of freedom df.

RV.UNIFORM(min, max) Numeric. Returns a random value from a uniform
distribution with the specified minimum and maximum. See also the
UNIFORM function.

RV.WEIBULL(a, b) Numeric. Returns a random value from a Weibull
distribution with the specified parameters.

UNIFORM(max) Numeric. Returns a uniformly distributed pseudo-random
number between 0 and the argument max, which must be numeric (but can
be negative). You can repeat the sequence of pseudo-random numbers by
setting the same random number seed (available on the Transform menu)
before each sequence.

除此之外,还有:
6.Distribution functions (cumulative & inverse cumulative)
7.Conversion functions
8.String functions
9.Date and time functions
详请看资料原文。http://www.edb.utexas.edu/faculty/fouladi/e384lec7f.pdf

谁有SPSS 中的函数表

6. 有数据 怎样用SPSS 模型求函数

你看看 spss分析 曲线估计里面 有很多个曲线模型,你可以一次性把列出的那些曲线模型全部选中 然后根据结果看那种模型拟合效果最好 那就用哪种模型

7. 两列数据 如何用SPSS求出他们的函数模型 自变量是时间

将年份编码为1,2,3,4。。。,然后用回归分析当中的线性模型或非线性模型来来预测就可以了。

两列数据 如何用SPSS求出他们的函数模型 自变量是时间

8. 企业综合业绩评价模型是什么?如何利用每股收益、主营业务利润率、净资产等指标运用spss进行分析?

SPSS因子分析
最新文章
热门文章
推荐阅读