由买买提看人间百态

topics

全部话题 - 话题: axis1
(共0页)
w*******e
发帖数: 666
1
来自主题: Statistics版 - SAS求助:gplot 画图
在SAS的官网上找到个链接,有画forest plot的code。
想请教:
如果sohn 2002 snow 1999 和raine2003 下还分别有A B C 三个race,该怎么修改上面
的code呢?
我试了半天,连input data都一直报错。
或者哪位在哪里看到相似的例子,能否发我一份呢?
非常感谢!
得出的图如下:
http://support.sas.com/kb/35/773.html
code 如下:
/* Set the graphics environment */

goptions reset=all cback=white border htitle=12pt htext=10pt;

... 阅读全帖
x*******u
发帖数: 500
2
来自主题: Statistics版 - SAS bar chart 求助
proc gchart 横坐标是date by month, 数据很多, 画出来, 坐标下面的字密密麻麻看
不清楚. 请问, 怎么只显示年份.
其他proc 也行. 反正就是画个bar char, 横坐标是date, 纵坐标是count.
我试过
axis1 order=("01Oct98"d to "01Dec11"d by year);
proc gbarline data=Plotdata;
vbar date/subgroup=type discrete sumvar=count
maxis=axis1;
format date DATE7.;
run;
quit;
但是bar也随之减少.
s*****a
发帖数: 2735
3
来自主题: Statistics版 - SAS Graphic question - help please
axis1 label=none order=(1 to 13)/*??x axis 的范围*/
value=(j=c "12AM" " " "12PM" " ""12AM" " ""12PM" " ""12AM"
" ""12PM" " ""12AM");
/* ..... */
proc gplot;
plot var1*var2 / haxis = axis1;
run;
/* ???可行 *//
v*********w
发帖数: 1632
4
来自主题: Statistics版 - data distribution fit
I have run a data distribution fit code below.
Can anybody help me figure out why the histogram cannot be output?
Thanks.
data Plates;
label Gap = 'Plate Gap in cm';
input Gap @@;
datalines;
0.746 0.357 0.376 0.327 0.485 1.741 0.241 0.777 0.768 0.409
0.252 0.512 0.534 1.656 0.742 0.378 0.714 1.121 0.597 0.231
0.541 0.805 0.682 0.418 0.506 0.501 0.247 0.922 0.880 0.344
0.519 1.302 0.275 0.601 0.388 0.450 0.845 0.319 0.486 0.529
1.547 0.690 0.676 0.314 ... 阅读全帖
c*****s
发帖数: 214
5
来自主题: Java版 - Axis1.2RC3问题
我的两个相同的程序都在用Axis 1.2RC3访问某webservice。其中一个一直报下面这个错
误。
AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode:
faultString: java.lang.ArrayIndexOutOfBoundsException: 0
faultActor:
faultNode:
faultDetail:
{http://xml.apache.org/axis/}stackTrace:java.lang.ArrayIndexOutOfBoundsExcept
ion: 0
at
org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:289)
at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:88)
...
HttpSender 289
m******t
发帖数: 2416
6
来自主题: Java版 - Axis1.2RC3问题

Can't you deal with an empty array the same as a null here?
c*****s
发帖数: 214
7
来自主题: Java版 - Axis1.2RC3问题

!=
HttpSender是axis里的类,
包在axis-1.2-RC3.jar里。我最终能拿到的是axis生成的stub类,完全看不到HTTP请求,
SOAP请求,webservice call这些东西。
源码是下载了才看到的。
m******t
发帖数: 2416
8
来自主题: Java版 - Axis1.2RC3问题


Sorry, I didn't realize it was an Axis class.
Could it be another saaj jar hidden somewhere on one of
the project's classpath?
c*****s
发帖数: 214
9
来自主题: Java版 - Axis1.2RC3问题
问题变成了weblogic问题。出错的程序是在weblogic 7.1环境下运行的。weblogic 中有
几个包(webservices.jar, webserviceclient.jar等)里包含老的javax.xml.soap类。
weblogic 8
中这样的问题可以通过设置WEB-INF/weblogic.xml里的true prefer-web-inf-classes>参数来解决。但7.1不支持这个参数。
我的问题是在weblogic7.1里如何强迫让系统先寻找一个类时先看webapp自己的classpath
, 再找weblogic的。


{http://xml.apache.org/axis/}stackTrace:java.lang.ArrayIndexOutOfBoundsExcept





c*****s
发帖数: 214
10
来自主题: Java版 - Axis1.2RC3问题
没错。weblogic下的几个jar包含了相同的类。有办法配置weblogic
7让我自己的saaj-1.2.jar先被搜索吗?

(mimeHeaders.getHeader(HTTPConstants.HEADER_CONTENT_TYPE)
m******t
发帖数: 2416
c*****s
发帖数: 214
12
来自主题: Java版 - Axis1.2RC3问题
Thanks
问题解决。
因为我们本来就有一个自己的启动weblogic的ant脚本,在那里我把saaj-1.2.jar放到了
最前面。
奇怪的是只要weblogic.jar在前面这个问题就会出现,而weblogic.jar里并没有javax.xm
l.soap包,webservices.jar 和webserviceclient.jar里才有。
g*******t
发帖数: 1039
13
来自主题: Java版 - SOAP over SMTP
Thanks - but I was there before posting my initial msg.
My understanding is that Apache SOAP is a dead project (at least not very
active) and has been replaced by Axis - By the way, the links there to IBM's
SMTP and POP3 bean suites won't work any more, and nowhere to download those
jars.
Actually I am specifically looking for SOAP over SMTP impl/config examples for
Axis1.x - google did not give me ANY useful info.
Good thing is that Axis2 is released and better documented, and contains much
mor
p***p
发帖数: 559
14
来自主题: Java版 - 什么是JAX WS
谢谢两位,我更迷糊了
以前只用过AXIS1,我以为web service就是基于SOAP的,所有的都应该兼容,就像HTTP
一样,不管是IE FF Tomcat jetty等等,都可以互操作。
我可以说JAX RPC和JAX WS是Java Webservice的API,那么AXIS和JbossWS是他们的实现
吧。另外两者的XML又有什么区别呢?
看来RPC和WS之间就不兼容,另外Contract-first (XML document-centric) approach,
and RPC (object-centric) approach.似乎WS都是用WSDL开始的啊?
彻底糊涂了
这次对方规定要用JbossWS,请问应该是支持JAXWS吧,那么和AXIS兼容么
x**********0
发帖数: 163
15
来自主题: Statistics版 - SAS GPLOT
I have a little problem to understand such a SAS statement.
Proc gplot;

axis1 length=4.75 in offset=(4,4)
is there anyone who can tell me ? Thanks
y*****w
发帖数: 1350
16
来自主题: Statistics版 - SAS Graphic question - help please
Thanks for the above responses. I have worked it out in the AXIS statement
using the same idea as shincha suggested, but the actual data is recorded as
real clock time like 12:04:37 (although every minute), so the actual
numbers in the ORDER option are very large (i.e. 24x3600=86400 per day). By
the way, due to the long days in the actual data, I won't need the minor
ticks.
I also added t=1, t=2, ... (see below) --- is this necessy?
axis1 minor=none label=none
order=(0 to n*86400 by 432... 阅读全帖
y*****w
发帖数: 1350
17
各位distribution大拿好,我最近有个sample size calculation project。是count
data,具体说是number of patient visits, with number of episodes for each
number of visit。请各位帮着参谋看一下我做的是否合适,给些意见。
Sample data如下:
# patient visit episode
---------------------------------
1 156
2 287
3 589
4 899
5 1535
6 1408
7 1017
8 ... 阅读全帖
(共0页)