五月天婷亚洲天久久综合网,婷婷丁香五月激情亚洲综合,久久男人精品女人,麻豆91在线播放

  • <center id="8gusu"></center><rt id="8gusu"></rt>
    <menu id="8gusu"><small id="8gusu"></small></menu>
  • <dd id="8gusu"><s id="8gusu"></s></dd>
    樓主: davil2000
    15821 78

    [程序分享] 基于SAS/GRAPH繪制動畫雪景圖   [推廣有獎]

    院士

    99%

    還不是VIP/貴賓

    -

    TA的文庫  其他...

    ☆大數(shù)據(jù)時代文庫☆

    威望
    4
    論壇幣
    29700 個
    通用積分
    23.9404
    學術水平
    1172 點
    熱心指數(shù)
    1121 點
    信用等級
    1143 點
    經(jīng)驗
    97526 點
    帖子
    2730
    精華
    19
    在線時間
    3003 小時
    注冊時間
    2004-10-31
    最后登錄
    2022-6-10

    樓主
    davil2000 發(fā)表于 2012-11-21 11:23:48 |只看作者 |壇友微信交流群|倒序 |AI寫論文
    相似文件 換一批

    +2 論壇幣
    k人 參與回答

    經(jīng)管之家送您一份

    應屆畢業(yè)生專屬福利!

    求職就業(yè)群
    趙安豆老師微信:zhaoandou666

    經(jīng)管之家聯(lián)合CDA

    送您一個全額獎學金名額~ !

    感謝您參與論壇問題回答

    經(jīng)管之家送您兩個論壇幣!

    +2 論壇幣

    /*基于SAS/GRAPH繪制動畫雪景圖*/
    /* assign the destination for current directory */

    x 'cd d:\docs';
    filename out 'test1.gif';
    /* set the graphics environment and assign the */
    /* appropriategraphics options for the animation */

    goptions reset=all    device=gifanim    gsfname=out
        gsfmode=replace    iteration=0    delay=80    ftext=swissb
        cback=SkyBlue    ctext=navy    htext=1;

    %let n=100;

    /* number of patients = number of random numbers */
    /* create data sets for the sequence of graphs   */

    data a;
    do i=1 to &n;
            x=3+rannor(345);
            y=pdf('PARETO',x,.5,1);
            output;
    end;
    run;


    data b; set a;
    do k=1 to &n+1-i;
            l=&n+1-k;
            output;
    end;
    run;

    proc sort data=b; by l; run;

    data c;   set b;    by l;
    z=0;    w=1;    output;
    z=0;    w=2;    output;
    z=0;    w=3;    output;
    run;


    proc sort data=c; by l w; run;

    data d; set c;
    if i=l and w=1 then z=y*2;
    if i=l and w=2 then z=y;
    run;

    data test;
    do x=0 to 7 by .1;
            z1=pdf('PARETO',x,.5,1);
            output;
    end;
    run;


    data test1; set test;
    do l=1 to &n;
            do w=1 to 3;
            output;
            end;
    end;
    run;

    data plot; set test1 d; run;


    proc sort data=plot; by l w; run;
    /*The following code sets the symbol statements for the graphs and uses */
    /*proc gplot to produce the plots to be animated by GIFANIM driver */

    symbol1 color=green i=join w=5 l=45;
    symbol2 font=marker value=T color=Snow h=3;
    axis1 order=(0 to .5 by .1) offset=(1,1) minor=(number=1) label=none ;
    axis2 order=(0 to 7 by 1) offset=(1,1) minor=(number=1) label=none ;


    /*VALUE=special-symbol specifies a plot symbol for the data points */
    proc gplot data=plot uniform;
    plot z1*x=1 z*x=2/vaxis=axis1 haxis=axis2 overlay CFRAME=SkyBlue
                                        vref=.1 to .4 by .1    lvref=2
                                        href= 1 to  6 by     1    lhref=2 nolegend ;
    by l w;
    run; quit;

    /* end the animation */
    data _null_;
    file out recfm=n mod;  put '3B'x;
    run;

    /*disassociates the currently assigned filerefs*/
    filename out clear;

    test1.gif


    /* 瑞雪兆豐年 */
    /*
    看官,請點擊帖子左下角的“評分”給點鼓勵吧! */

    二維碼

    掃碼加我 拉你入群

    請注明:姓名-公司-職位

    以便審核進群資格,未注明則拒絕

    關鍵詞:GRAPH GRAP RAP APH appropriate 動畫

    已有 33 人評分經(jīng)驗 威望 論壇幣 學術水平 熱心指數(shù) 信用等級 收起 理由
    congmu + 1 + 1 + 1 厲害
    8848sovereign + 1 精彩帖子
    漫思wen茶 + 1 + 1 + 1 精彩帖子
    邁向人大 + 1 + 1 + 1 精彩帖子
    jianbamail + 1 精彩帖子
    a6566792 + 1 + 1 + 1 精彩帖子
    夏之鷺江 + 1 + 1 + 1 精彩帖子
    tailezhu2007 + 1 + 1 + 1 精彩帖子
    zhentao + 1 + 1 + 1 了不起。里面有很多應用啊。好好學習了。
    ranyuzhe + 1 精彩帖子

    總評分: 經(jīng)驗 + 280  威望 + 1  論壇幣 + 160  學術水平 + 56  熱心指數(shù) + 52  信用等級 + 50   查看全部評分

    本帖被以下文庫推薦

    R是萬能的,SAS是不可戰(zhàn)勝的!
    沙發(fā)
    ziyenano 發(fā)表于 2012-11-21 11:32:12 |只看作者 |壇友微信交流群
    最近都很有娛樂精神吶!
    藤椅
    瀚海星云 發(fā)表于 2012-11-21 13:38:27 |只看作者 |壇友微信交流群
    支持 能畫海賊王嗎
    板凳
    admin 企業(yè)認證  發(fā)表于 2012-11-21 13:59:59 |只看作者 |壇友微信交流群
    附件圖片太大,可以做小一點kb,不然看不到
    報紙
    rongyun5460 在職認證  發(fā)表于 2012-11-21 14:21:04 |只看作者 |壇友微信交流群
    啥東東呢,看不到呀
    地板
    若水煙寒 發(fā)表于 2012-11-21 14:39:25 |只看作者 |壇友微信交流群
    有意思~~贊一個。!
    7
    xiaojiabei 發(fā)表于 2012-11-21 14:42:46 |只看作者 |壇友微信交流群
    超級喜歡
    開心是我的宗旨
    8
    ziyenano 發(fā)表于 2012-11-21 14:45:24 |只看作者 |壇友微信交流群
    data _null_;
    file out recfm=n mod;
    put '3B'x;
    run;
    大牛,能否請教一下這一段的意思?
    9
    davil2000 發(fā)表于 2012-11-21 15:22:20 |只看作者 |壇友微信交流群
    ziyenano 發(fā)表于 2012-11-21 14:45
    data _null_;
    file out recfm=n mod;
    put '3B'x;
    In the file statement, the 'out' option is the reference of the graph file,  the 'RECFM=N' option indicates binary format and causes the file to be treated as a byte stream s/t we can control the record format,  and 'MOD' option specifies that output should be appended to an existing file.
    Besides, in the put statemet,  '3B'x  is a kind of hexadecimal notation.
    已有 1 人評分學術水平 熱心指數(shù) 信用等級 收起 理由
    ziyenano + 1 + 1 + 1 精彩帖子

    總評分: 學術水平 + 1  熱心指數(shù) + 1  信用等級 + 1   查看全部評分

    R是萬能的,SAS是不可戰(zhàn)勝的!
    10
    ziyenano 發(fā)表于 2012-11-21 15:24:48 |只看作者 |壇友微信交流群
    davil2000 發(fā)表于 2012-11-21 15:22
    In the file statement, the 'out' option is the reference of the graph file,  the 'RECFM=N' option  ...
    thanks  very much!!!
    已有 1 人評分學術水平 熱心指數(shù) 信用等級 收起 理由
    yuzhuyu + 1 + 1 + 1 精彩帖子

    總評分: 學術水平 + 1  熱心指數(shù) + 1  信用等級 + 1   查看全部評分

    您需要登錄后才可以回帖 登錄 | 我要注冊

    本版微信群
    加好友,備注cda
    拉您進交流群

    京ICP備16021002-2號 京B2-20170662號 京公網(wǎng)安備 11010802022788號 論壇法律顧問:王進律師 知識產(chǎn)權保護聲明   免責及隱私聲明

    GMT+8, 2024-12-23 21:45