the log syntax definition in sas.vim is minimal even if it works.
here is how to make log look nice.
1) create ~/.vim/syntax/log.vim
syn match sasNumber "-\=\<\d*\.\=[0-9_]\>"
syn match sasNote "\s*NOTE:.*" contains=sasNumber
syn match sasWarn "\s*WARNING:.*" contains=sasNumber
syn match sasError "\s*ERROR.*" contains=sasNumber
syn region sasEp start="^\s\+_$" end="^\s\+\d\+$" contains=sasNumber
hi sNote term=NONE cterm=bold ctermfg=Blue ctermbg=Black gui=bold guifg=Blue
guibg=black
hi sWarn ter... 阅读全帖
Dear all,
I’m having a problem writing a SAS macro.
Briefly, I would like to store values of a variable from a dataset to a
macro variable, and use those values in the regression model.
For example, the B variable in the following model is a continuous model and
I would like to update the &I in the following model with a series of
values of B, such as 2, 6, 9, 13, etc, one for each time.
PROC RLOGIST DATA=FINAL FILETYPE=SAS;
NEST SDMVSTRA SDMVPSU;
WEIGHT WTDR2D4YR;
CLASS A;
MODEL Y= A... 阅读全帖
http://shop3.porsche.com/usa/specials/martini/wap0200x60c/ http://shop3.porsche.com/filestore.aspx/normal.jpg?
pool=pdds&type=article&id=WAP+020+0X6+0C&lang=de&filetype=normal&version=e
c98c936-fc18-4b67-be38-304e7c969f63
$7,999.99
The Porsche Bike RS is exclusively sold through your local authorized
Porsche Center.
Porsche Bike RS*. Lightweight high-end carbon frame. Ergonomic components
made of carbon [ handlebars, stem and seat post ]. Maximum performance and
Shimano XTR equipment, incl. 20-g... 阅读全帖
☆─────────────────────────────────────☆
harnibal (pyridone) 于 (Fri Mar 11 18:13:30 2005) 提到:
这位洪老大勇气可嘉。
☆─────────────────────────────────────☆
graceshcn (兔子飞飞) 于 (Fri Mar 11 22:06:44 2005) 提到:
呵呵,原来红菱艳是你们那里的呀?呵呵,不错不错呀.
☆─────────────────────────────────────☆
oestrus (your bed or my b
from httpd.conf:
#
# AddHandler: allows you to map certain file extensions to "handlers",
# actions unrelated to filetype. These can be either built into the server
# or added with the Action command (see below)
#
# If you want to use server side includes, or CGI outside
# ScriptAliased directories, uncomment the following lines.
#
# To use CGI scripts:
#
AddHandler cgi-script .cgi
so you just say:
AddHandler cgi-script .pl
If you use Ubuntu, I highly recommand the following: https://github.com/fisadev/fisa-vim-config
It is pretty much easy to install which should save you from a lot of
tedious work of configurations that I don't even want to touch.
But if don't want to go with the above, you probably need to set
"filetype indent on" in your vimrc.
If someone has the access of SPIE proceedings, can you send this
paper to email address "mlv2k02 at yahoo.com"? Thanks a lot!
New nanofabrication technique using overlay for 15-nm zone plate
Weilun Chao, Bruce D. Harteneck, Erik H. Anderson, David Attwood,
and J. Alexander Liddle
Proc. SPIE 6110, 61100D (2006)
pdf link: http://scitation.aip.org/getpdf/servlet/GetPDFServlet?filetype=
pdf&id=PSISDG00611000000161100D000001&idtype=cvips&prog=search
Thank you for the reply. Please bear with me; I cannot type in Chinese here.
I did try a loop, which was like:
DATA _NULL_;
DO j = 1 TO 5;
CALL SYMPUT (“I”, B);
PROC RLOGIST DATA=FINAL FILETYPE=SAS;
NEST SDMVSTRA SDMVPSU;
WEIGHT WTDR2D4YR;
CLASS A;
MODEL Y= A B A*B;
PREDMARG A*B / B=(&I);
PRED_EFF B=(-1 1)*A=(1) / A=(&I);
RUN;
END;
RUN;
But it didn't work, either.
How about this one if you need run 5 times:
%macro log(I)
PROC RLOGIST DATA=FINAL FILETYPE=SAS;
NEST SDMVSTRA SDMVPSU;
WEIGHT WTDR2D4YR;
CLASS A;
MODEL Y= A B A*B;
PREDMARG A*B / B=(&I);
PRED_EFF B=(-1 1)*A=(1) / A=(&I);
RUN;
%mend;
%log(value1)
%log(value2)
and so on.