x**m 发帖数: 941 | 1 try compress(varX, " 123") when varX is in the original format. |
|
y*********s 发帖数: 24 | 2 有什么好方法可以方便得去掉变量的PERMANENT FORMAT 吗?
谢谢!! |
|
a*****3 发帖数: 601 | 3
attrib var label= format= ? |
|
p********a 发帖数: 5352 | 4 SAS根据前20行决定FORMAT,如果你想要整数的话,把前20行放整数吧 |
|
w*********r 发帖数: 488 | 5 你可以改EXCEL的文件吗?日期好像可以format成number,就不显示11/19/2010,就变成一
个整数了.我记着有这么回事. |
|
p*****o 发帖数: 543 | 6 I have the following data set A with variable Mon (format: MONYY5.)
Mon
JAN10
FEB10
MAR10
APR10
MAY10
I want to get only records that after MAR10, but how can i use the GT in the
code?
Data B;
Set A;
Where Mon GT 'MAR10'D.;------i KNOW its wrong, but I dont know how to do it
right....
RUN; |
|
n****u 发帖数: 229 | 7 where Mon >= '01MAR2010'd
the format of Mon is Monyy5. but the Mon is numeric |
|
w*******n 发帖数: 469 | 8 like I want to input
proc format;
value A
1="µL"
;
run;
If I directly copy µ from word to my code, the outcome will be "A&
micro;", not "µ",
Can any big bull give me the answer?
Thanks with BaoZhi if with correct answer. |
|
s******y 发帖数: 352 | 9 Yes, But still have to work little bit harder. not sure if there are other
ways around.
proc format;
value a
0-30000 = 'a*.1'
30000-60000 = '30000*.1 + (a-30000)*.25'
60000-80000 = '30000*.1 + 30000*.25 + (a-60000)*.30'
;
run;
data test;
do a=10 to 80000 by 5000;
b='%sysevalf('||strip(tranwrd(put(a,a.),'a',a))||')';
c=resolve(b);
output;
end;
run; |
|
b*********l 发帖数: 466 | 10 Just want to produce a tabular table.
If use proc report. is there any options to add the tabular format? |
|
k*******a 发帖数: 772 | 11 你可以用SAS universal view来打开你的data
这个里面有选项,不显示format
sas里面那个viewer,我不是很清楚是不是可以那样 |
|
f*****k 发帖数: 110 | 12 有没有可能是同一个format名有多个定义,所以SAS搞不清用哪一个定义而出错? |
|
z**********i 发帖数: 12276 | 13 放在同一个FOLDER.
LIBNAME AA "\YOUR FORMATS LOCATION";
OPTIONS FMTSEARCH=(AA.FORMAT1, AA.FORMAT2, AA.FORMAT3); |
|
|
c******5 发帖数: 22 | 15 回帖发到你信箱去了~~~谢谢回复!
FORMATS |
|
p*****o 发帖数: 543 | 16 Hi all, I have a problem with PROC REPORT. I have one variable called ID,
and it is character variable, but it has leading zeros (such as: 0000123).
But when I was using the following define statement, in the final excel file
I created, it automatically removed leading zero and change it to be a
number. Any one can help me a lit bit on it?
Thanks,
define id/display 'ID' width = 10 format = $10.; |
|
d******9 发帖数: 404 | 17 I tried both, they do not work. Why?
However, the Headtext option works
format: |
|
d*******8 发帖数: 321 | 18 请问大家一个小问题,我正在用SAS读一个EXCEL文件,其中一列示如下格式:
5/25/2010 17:30
5/26/2010 0:00
我试了不同FORMAT 在 INPUT,好像都有问题,多谢指教. |
|
a****g 发帖数: 8131 | 19 try proc import and then format |
|
k*******a 发帖数: 772 | 20 I think the format is called z4.
you can use put(x, z4.) to transfer to your desired look |
|
l****u 发帖数: 529 | 21 data one;
input x;
cards;
1
2
3
10
;
run;
data two;
set one;
format x z4.;
run;
baozi |
|
s*****a 发帖数: 2735 | 22 那种最上面一行是variable名字,下面一个column一个column对应是数据的data,算是
什么format的?
还有那种电信传输的txt数据,一个txt file:
v1,78,878,89904,v2,889,789,900;
这样的又算是什么格式的数据呢?谢谢。 |
|
P****D 发帖数: 11146 | 23 I don't think you need/should put too many details in your resume, unless
this is your key qualification and not very many other people can do it.
Just say you developed a software to import raw data with various structures
, as well as clean, reorganize, and export into xxx format (if that's what
you did). |
|
b******s 发帖数: 345 | 24 怎样在unix下使用在windows下产生的format?google到需要用PROC CPORT及PROC
CIMPORT,请大家 能不能给个例子,尤其是关于transport file的写法,谢谢! |
|
a****g 发帖数: 8131 | 25 does format have the same length requirement as variable names? |
|
p***7 发帖数: 535 | 26 No. If you use 'if then' you will get truncated 'unsco' for unscore.
But format will allow the full length 'unscore'.
I don't understand the reason. |
|
S******6 发帖数: 752 | 27 I think you misunderstand the lecture.
It should be "
When assigning a character label in a
dataset, the length of the first evaluation of the
label will be applied to all labels."
However, if you use the proc format, their is no truncation problem now. |
|
k*z 发帖数: 4704 | 28 【 以下文字转载自 Database 讨论区 】
发信人: kiz (泥偶), 信区: Database
标 题: 有大侠知道怎么format下面这个query的时间么
发信站: BBS 未名空间站 (Wed Nov 13 12:27:16 2013, 美东)
DB2出来的时间大多数是Hundred Year Date, 我现在写了一个query可以把时间取出来
,但是格式是datetime, 我怎么才能转成date?
ELECT date(days('1899-12-31')+HYD) as SQLDate,
Year(date(days('1899-12-31')+HYD)) as Year,
Month(date(days('1899-12-31')+HYD)) as Month,
Day(date(days('1899-12-31')+HYD)) as Day,
FROM DB2.Table
谢谢。 |
|
t******u 发帖数: 345 | 29 每次转换variable的format 和 informat都特别痛苦,尤其是日期相关的情况,一直不
太懂怎么最有效的转换。想了几种常见的情况,哪位高手能帮忙总结一下,除了code,
最好能再解释几句。多谢!多谢!
Variable Original Wanted Sample
Solution
# Name informat informat value
code
1 zip best6. $5. 37000
00237 new_zip = put (zip, $5.);
2 usage $8. 8.2 1234... 阅读全帖 |
|
w*******y 发帖数: 60932 | 30 High-Definition Over Series - Blu-Ray Format: Over America, Over British
Columbia, Over Ireland, and Over Alaska
Features Include:
* 4-Pack: Over America, Over British Columbia, Over Ireland, Over Alaska
* Part of an Emmy-award winning Over Series
* More than a million copies sold
* Shot in crystal clear high definition
* Set to an original soundtrack and featuring unique photographic styles
* Presented in HD for a crystal clear cinema-quality experience
* Previously |
|
w*******y 发帖数: 60932 | 31 Radiohead Live In Prague DVD. Lots of different formats available for
download. Fan shot in HD by band-provided handhelds, then remixed as a pro-
quality video. What'll they think of next?
Link: Link:
http://radiohead-prague.nataly.fr/Download.html
|
|
w*******y 发帖数: 60932 | 32 High-Definition Over Series - Blu-Ray Format: Over America, Over British
Columbia, Over Ireland, and Over Alaska
Link:
http://family.1saleaday.com/
|
|
w*******y 发帖数: 60932 | 33 Love Hurts
Roy Orbison | Format: MP3 Download
|
|
w*******y 发帖数: 60932 | 34 Seven Seas Of Rhye
Queen | Format: MP3 Download
|
|
w*******y 发帖数: 60932 | 35 Greatest Hits
Queen | Format: MP3 Download
|
|
|
h*****e 发帖数: 439 | 37 Hi,
I'm buying a medium format camera for my father and would really appreciate
some suggestion from you guys.
I'm thinking about a Linhof Technika 70.
thanks a mil/ |
|
w*******g 发帖数: 99 | 38 Is there any reference I can find about the detailed structure of IGES file
format? I am new to this club and thank you for your help! |
|
w*******g 发帖数: 99 | 39 It is a file format used by a lot of software (in my case, some CAD software)
to store drawings... |
|
l**p 发帖数: 474 | 40 3D-Studio File Format (.3ds)
Autodesk Ltd.
Document Revision 0.93 - Januari 1997
Rewritten by Martin van Velsen (email: v*****[email protected] )
and Robin Fercoq ( 3ds-bin + mli )(email: r***[email protected])
Based on documentation by Jim Pitts ( email: j*[email protected] )
Source update provided by:
Albert Szilvasy (email: s******[email protected] )
A lot of the chunks are still undocumented |
|
s******o 发帖数: 298 | 41 By Robert Roy Britt
Senior Science Writer
posted: 10:11 am ET
24 April 2002
When stars are born on the same cosmic block, the principle of survival of
the fittest rules like nowhere else in the universe, a new study suggests.
Star formation may be more rambunctious than thought when it occurs in bursts,
generating crowded stellar neighborhoods. Stars sometimes form so closely
together that they must compete for the available gas in their natal cloud
of material. More massive stars are more capab |
|
s******o 发帖数: 298 | 42 New Observations of Early Universe Help Confirm Theories of Formation
By Robert Roy Britt
Senior Science Writer
posted: 11:00 am ET
23 May 2002
The most detailed glimpse ever gained of the early universe shows ripples in
space back before there were any stars. This finding adds support to theories
of how the universe began in an initial Big Bang, inflated rapidly, then
developed the first galaxies.
The new view, imaged in microwave wavelengths not visible to the eye, shows
the earliest fluctuati |
|
c*********s 发帖数: 63 | 43 终于弄好了。把下面的存成.bst文件,和Tex文件放在同一个文件夹就可以了。
%%
%% This is file `cellnew.bst',
%% generated with the docstrip utility, by HJ, 03/03/2013.
%%
%% The original source files were:
%%
%% merlin.mbs (with options: `ay,nat,nm-rvvc,nmlm,x10,x0,m10,m0,mcite,mct-1
,mct-x2,keyxyr,blkyear,dt-beg,yr-par,note-yr,atit-u,jttl-rm,thtit-a,vol-it,
vnum-x,volp-com,pp-last,num-xser,jnm-x,btit-rm,bt-rm,add-pub,pub-par,pre-pub
,edby,edbyy,blk-tit,ppx,ed,abr,ednx,xedn,jabr,url,url-blk,em-it,nfss,')
%% ----------------------... 阅读全帖 |
|
c*********s 发帖数: 63 | 44 终于弄好了。把下面的存成.bst文件,和Tex文件放在同一个文件夹就可以了。
%%
%% This is file `cellnew.bst',
%% generated with the docstrip utility, by HJ, 03/03/2013.
%%
%% The original source files were:
%%
%% merlin.mbs (with options: `ay,nat,nm-rvvc,nmlm,x10,x0,m10,m0,mcite,mct-1
,mct-x2,keyxyr,blkyear,dt-beg,yr-par,note-yr,atit-u,jttl-rm,thtit-a,vol-it,
vnum-x,volp-com,pp-last,num-xser,jnm-x,btit-rm,bt-rm,add-pub,pub-par,pre-pub
,edby,edbyy,blk-tit,ppx,ed,abr,ednx,xedn,jabr,url,url-blk,em-it,nfss,')
%% ----------------------... 阅读全帖 |
|
|
a*****1 发帖数: 3817 | 46 THE BLOG
Why I Can No Longer Support Hillary Clinton
4 days ago
César Vargas Writer, director, advocate, strategist, cultural critic.
Founder of upliftt.com.
It took me a long time to write this. I had to dig deep into my being to
come up with these words. I’m recanting my endorsement of Hillary Clinton
for the presidency.
I’m aware of how vindictive Clintonians can be. I’m not speaking about the
Clintons themselves, but of those surrounding them.
Perhaps the saying is true: dime con quién andas... 阅读全帖 |
|
a********9 发帖数: 3813 | 47 THE BLOG
Why I Can No Longer Support Hillary Clinton
4 days ago
César Vargas Writer, director, advocate, strategist, cultural critic.
Founder of upliftt.com.
It took me a long time to write this. I had to dig deep into my being to
come up with these words. I’m recanting my endorsement of Hillary Clinton
for the presidency.
I’m aware of how vindictive Clintonians can be. I’m not speaking about the
Clintons themselves, but of those surrounding them.
Perhaps the saying is true: dime con quién andas... 阅读全帖 |
|
a********9 发帖数: 3813 | 48 THE BLOG
Why I Can No Longer Support Hillary Clinton
4 days ago
César Vargas Writer, director, advocate, strategist, cultural critic.
Founder of upliftt.com.
It took me a long time to write this. I had to dig deep into my being to
come up with these words. I’m recanting my endorsement of Hillary Clinton
for the presidency.
I’m aware of how vindictive Clintonians can be. I’m not speaking about the
Clintons themselves, but of those surrounding them.
Perhaps the saying is true: dime con quién andas... 阅读全帖 |
|
a********9 发帖数: 3813 | 49 THE BLOG
Why I Can No Longer Support Hillary Clinton
4 days ago
César Vargas Writer, director, advocate, strategist, cultural critic.
Founder of upliftt.com.
It took me a long time to write this. I had to dig deep into my being to
come up with these words. I’m recanting my endorsement of Hillary Clinton
for the presidency.
I’m aware of how vindictive Clintonians can be. I’m not speaking about the
Clintons themselves, but of those surrounding them.
Perhaps the saying is true: dime con quién andas... 阅读全帖 |
|
a********9 发帖数: 3813 | 50 THE BLOG
Why I Can No Longer Support Hillary Clinton
4 days ago
César Vargas Writer, director, advocate, strategist, cultural critic.
Founder of upliftt.com.
It took me a long time to write this. I had to dig deep into my being to
come up with these words. I’m recanting my endorsement of Hillary Clinton
for the presidency.
I’m aware of how vindictive Clintonians can be. I’m not speaking about the
Clintons themselves, but of those surrounding them.
Perhaps the saying is true: dime con quién andas... 阅读全帖 |
|