由买买提看人间百态

topics

全部话题 - 话题: vartwo
(共0页)
h*********o
发帖数: 151
1
来自主题: Statistics版 - 请教一个SAS里面用随机数的问题
大家请看下面这段程序,请问varthree和varfour的结果是不是应该是一样的?
vartwo里面因为随机数产生的seed是大于零的,所以vartwo的结果是一定的,vartwo=
34.9625。。。。
所以我想varthree和varfour的结果应该都是35呀,可是SAS运行结果说varthree=21,
varfour=35,这是为什么呢???
data random4;
vartwo=ranuni(20)*50;
varthree=ceil(ranuni(20)*50);
varfour=ceil(vartwo);
run;
c*****s
发帖数: 180
2
来自主题: WaterWorld版 - PURE WATER DO NOT NETER PLEASE
SAS OnlineTutor®: Advanced SAS®
Combining Data Horizontally 4 of 47
backnextlesson menuLearning Pathhelp menu

Reviewing Terminology (continued)
?
Examine the two data sets shown below.
SAS Data Set A
Num VarOne
2458 07OCT2003
2462 19NOV2001
2501 30MAR2001

SAS Data Set B
Num VarTwo
2458 itemA
2462 itemB
2462 itemC
2501 itemA
Which term best describes the relationship between these data sets?
one-to-one
h***u
发帖数: 214
3
来自主题: BuildingWeb版 - quesiton about PHP! waiting online
Hi,
I just install apache1.3.26 and php4.2.3. when I using
phpinfo();
?>
everything works fine, it will show me the information.
but when I try the followings, it give me an error,pls help me
*************test.html*************

This page is for Power Calculation


Variable 1:
Variable 2:



M******t
发帖数: 309
4
来自主题: BuildingWeb版 - quesiton about PHP! waiting online
in your testphp1.php, use result is $_GET['varone'] + $_GET['vartwo']
M******t
发帖数: 309
5
来自主题: BuildingWeb版 - quesiton about PHP! waiting online
$var = $_GET['varone'] + $_GET['vartwo'];
print("result is $var");

install
h***u
发帖数: 214
6
来自主题: BuildingWeb版 - quesiton about PHP! waiting online
Still not work, Thanks anyway.
always say undefine varone and vartwo , the new var is zero.
do you think it is configuration problem?
(共0页)