由买买提看人间百态

topics

全部话题 - 话题: format
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
c******5
发帖数: 22
1
还是没有回帖,估计是我叙述的不清楚吧。我有一个sas data set,它附带有3个
format文件名字叫‘formats'。我把这三个format 文件各取名字叫'formats_1' '
formats_2',‘formats_3', 然后和我的sas data set一起放在了我指定的library '
proj1'中。用下面的语句给了format文件的位置(libname 已经指定了proj1):
options fmtsearch =(proj1);/*指定format位置*/
读了一部分format,但也得到了下面的error:
'Format ... not found or couldn't be loaded for variable ...'。
然后我又是试着改回原来的名字 ‘formats', 把3个format文件放在了3个地方,'
work','sasuser',和一个自己建的library-proj1:
options fmtsearch =(Work Sasuser proj1)。 读入了更多的format,但还有一样的
error message。
我... 阅读全帖
d******9
发帖数: 404
2
来自主题: Statistics版 - proc report format question
Finally, I find below info from SAS support.
Usage Note 32414: How can I prevent loss of leading zeroes when generating
Microsoft Excel output with ODS
http://support.sas.com/kb/32/414.html
Microsoft Excel uses the general format when importing data values that do
not have an Excel format applied. This general format attempts to determine
how the value should be formatted. For example, an account number that is
not alpha numeric and has leading zeroes will lose the leading zero. The
same problem... 阅读全帖
w********g
发帖数: 107
3
来自主题: MedicalCareer版 - something big is coming... new USMLE formats
lately USMLE are making a lot of changes... It looks like something big is
coming... 5.5-hour test day
http://www.usmle.org/general_information/fieldtrial/announcemen
The National Board of Medical Examiners® (NBME®) is developing new
assessment formats for use in its examination programs, including the
United States Medical Licensing Examination® (USMLE®), which NBME
jointly owns with the Federation of State Medical Boards (FSMB). A field
trial of these new formats is planned... 阅读全帖
c******5
发帖数: 22
4
哦,是不是读数据的时候还要调用format? 谢谢你这么快答复,下面是log文件:
273 LIBNAME proj1 '...';
NOTE: Libref PROJ1 was successfully assigned as follows:
Engine: V9
Physical Name: ...
274
275 OPTIONS FMTSEARCH=(proj1.formats_1, proj1.formats_2, proj1.formats_3);
277 /*2) Read the sas datafiles*/
278 Proc print data=proj1.test;
279 Run;
ERROR: Format ... not found or couldn't be loaded for variable ...
ERROR: Format ... not found or couldn't be loaded for variable ...
ERROR: Format ... not found or c... 阅读全帖
y*b
发帖数: 3190
5
来自主题: PhotoGear版 - Medium Format Fujifilm GFX 50S announced
"Fujifilm just announced the Fujifilm GFX 50S, a 50MP mirrorless Medium
Format Camera. It will be launched along with 3 lenses in early 2017.
Overall Fuji has 6 lenses in the raodmap.
Standard prime “GF63mmF2.8 R WR” (equivalent to 50mm in the 35mm format)
Wide-angle standard zoom “GF32-64mmF4 R LM WR” (equivalent to 25-51mm in
the 35mm format)
Mid-telephoto macro 1:0.5 “GF120mmF4 Macro R LM OIS WR” (equivalent to
95mm in the 35mm format)
Fast aperture mid-telephoto “GF110mmF2 R LM WR” (equivale... 阅读全帖
c******n
发帖数: 5697
6
来自主题: Software版 - chrome为什么写贴format有问题
每次总是在我的一行字后自动加end of line, 搞得文章format很有问题,比如下面这
段,我没有打回键,但是一行总是变成两行,只有在chrome中才出现这问题,firefox没有:
每次总是在我的一行字后自动加end of line, 搞得文章format很有问题,比如下面这
段 每次总是
在我的一行字后自动加end of line, 搞得文章format很有问题,比如下面这段 每次总
是在我的一
行字后自动加end of line, 搞得文章format很有问题,比如下面这段 每次总是在我的
一行字后自
动加end of line, 搞得文章format很有问题,比如下面这段 每次总是在我的一行字后
自动加end
of line, 搞得文章format很有问题,比如下面这段 每次总是在我的一行字后自动加
end of
line, 搞得文章format很有问题,比如下面这段 每次总是在我的一行字后自动加end
of line,
搞得文章format很有问题,比如下面这段 每次总是在我的一行字后自动加end of line
, 搞得文章
format很有问题,比如下面这段
s*********h
发帖数: 6288
7
在我的report中 PR这一列分成了好几个group,我想根据不同个group来给不同的
format,
group由index来决定
相关code 如下
PROC FORMAT;
VALUE NOTCAUCF
1 = 'TOTAL NON-CAUCASIAN';
VALUE SEXF
1 = 'MALE'
2 = 'FEMALE'
OTHER = 'SEX';
VALUE RACEF
1 = 'CAUCASIAN'
2 = 'Native American'
3 = 'Hispanic'
4 = 'African-American'
5 = 'Asian'
6 = 'Other'
OTHER = 'RACE/ETHNICITY';
VALUE AGEF
1 = 'AGE (YEARS)'
OTHER = ' ';
RUN;
PROC REPORT... 阅读全帖
x***x
发帖数: 3401
8
来自主题: Statistics版 - 如何用macro修改format value
想在此问一问大家, 有什么方法可以用macro来修改format value的值. macro的parameter里有format name.
举个例子
比如我有一个variable是cityname, 他的对应format 是这样的
value city
1='1. Beijing'
2='2. Shanghai'
3='3. Tianjing';
现在我想作的是用一个macro来调出cityname对应的format, 然后把单引号里面的值稍作改动, 变成
value city
1='Beijing'
2='Shanghai'
3='Tianjing';
就是把最前面的数字去掉了. 我在网上搜了半天, 没有发现有什么sas function可以去
提取format value的值. (如果能够提取那个值, 修改值就用compress()之类的function就可以简单完成了. )
请哪位高手指点一下.
谢谢先
补充: 不好意思 可能是我没有说清楚.
我的问题是用什么function来调出cityname variable所对应的format value, 也就是"1.
Beijin
y*m
发帖数: 60
9
来自主题: Apple版 - Apple moves to support DVD+RW format
Apple moves to support DVD+RW format
By Ina Fried
CNET News.com
October 13, 2003, 2:50 PM PT
After years of backing only one format in the recordable DVD format war, Apple
Computer is adding limited support of a rival format into its operating
system.
Apple, a longtime supporter of the DVD-R format, confirmed Monday that it is
adding support for DVD+R and DVD+RW into the Macintosh operating system with
Panther, the new version of Mac OS X that ships next week. Apple is only
adding support for ba
r********n
发帖数: 61
10
来自主题: Statistics版 - format的问题
有一个sas dataset 每次用的时候都需要run一个format file(也是一个dataset), 用
proc format cntlin=lib.format;
run;
如果不run这个数据的话, data就不能用
现在想能不能去掉这个format, 就是不用run这个format data也能用. google了一下似
乎不是很明白
烦劳各位不吝赐教
G**S
发帖数: 1108
11
来自主题: Statistics版 - format的问题
options nofmterr;

有一个sas dataset 每次用的时候都需要run一个format file(也是一个dataset), 用
proc format cntlin=lib.format;
run;
如果不run这个数据的话, data就不能用
现在想能不能去掉这个format, 就是不用run这个format data也能用. google了一下似
乎不是很明白
烦劳各位不吝赐教
m*********n
发帖数: 413
12
来自主题: Statistics版 - SAS format 的问题
my way to do this, for numeric variables having a format:
proc sql;
select sex, sex as sex1 format=10.4
from data1
;
quit;
then you can get a list of formatted value in sex and original values in
sex1.
of course the best way to check a format is to use PROC FORMAT
A*******s
发帖数: 3942
13
google了一下,没找到答案。
问题是这样的,假如我有自定义的format如下
proc format;
value aaa 1=2
2=4
;
run;
那么我想根据format的值,而不是原来的值,来计算一个data set的basic statistics
, 怎么办?sas的proc有没有统一的option是干这个的?
我用proc里的format statement,计算的还是原来的值。
比如说对于数据(1,2)来说,其mean应该是1.5,
但是我想用format后的数据(2,4)来算,mean该是3.
我把问题说明白没?谢谢大家。
x***x
发帖数: 3401
14
来自主题: Statistics版 - 如何用macro修改format value
The format for cityname has already been defined. What I wanna do now is
to modify the originally defined format, ie, remove some characters from
the originally defined value.
The macro shall look as simple as this:
%changeformat(var=cityname)
What the macro is supposed to do is:
1. Automatically determine the defined format for variable CITYNAME.
2. Modify the defined format, in this case: to remove the first 3
characters.
3. Attach the new format to variable CITYNAME.

e.g. No
b*******y
发帖数: 35
15
来自主题: Statistics版 - SAS9.2 - Z format
Sorry I can not type Chinese at my office.
Trying to import a table with Zipcode (Z format, Z informat) from SAS
Enterprise Guide to SAS9.2.
SAS9.2 can not accept Z format/informat with the error as shown below:
ERROR: The informat Z was not found or could not be loaded
How can I change the Zipcode format (Z format, Z informat) in SAS Enterprise
Guide to numerical or character so that it can be imported to SAS9.2?
I have tried put and input to convert the format but neither can work.
Thank you!
k*******a
发帖数: 772
16
来自主题: Statistics版 - SAS中FORMAT问题求教
试试这个macro, 他把你所有数值型变量转化为对应的format,如果这个obs有至少一个'NA',
那么就设
置flag=1,否者flag=0
%macro flag(lib=, data=, out=);
proc sql;
select name, format, count(*) into
:var separated by ' ', :fmt separated by ' ', :n
from sashelp.vcolumn
where upcase(libname)=upcase("&lib") and
upcase(memname)=upcase("&data") and
type='num' and
format ne '';
quit;
data &out;
set &lib..&data;
flag=0;
%do i=1 %to &n;
if put(%scan(&var,&i), %scan(&fmt, &i, "' '")) = 'NA'
... 阅读全帖
z**********i
发帖数: 12276
17
读数据的时候要调用format. 或许你的FORMATS有问题? LOG提示你DATASET的FORMATS
没有在你的FORMATS FILE里.
proc format library=proj1.formats_1 fmtlib;
run;

3);
p*******o
发帖数: 2726
18
From http://www.immigration-law.com/XXIV.html:
USCIS announces that starting on January 4, 2017, USCIS will post processing
times on its website using only a specific date format rather than weeks or
months. Accordingly, from here on, if the specific date which is reported
on the USCIS Processing Times Report in its web page is behind the receipt
date on your Receipt Notice, you are supposed to hear from USCIS within 30
days. If you don't hear from the USCIS after those 30 days, you are allowed
... 阅读全帖
j*****A
发帖数: 1395
19
来自主题: Tennis版 - 双打有用过I formation的么?
完全错误。
如果你发球很差,你根本就不要考虑什么I-Formation, 因为如果对方接发球厉害,管
你什么formation,等待你和你同伴的都是killer return.
I-formation 的两个必要条件:一是发球必须有威力,而且一定要发内角或追身,二是
网前同伴的截击要好。两者缺一不可,否则就是扯淡。
I-formation 在业余比赛基本上看不到,一般USTA的比赛也很少见,因为这需要同伴间
很好的交流,平时大家打双打几乎是没任何语言交流的。
K****D
发帖数: 30533
20
Lao Da, you mixed the concepts of Aussie Formation and I Formation.
They are different.
In I Formation, the net guy squads in the middle.
Also, even in Aussie Formation, the receiver's down the line return
is not a advantage. The server stands right at the middle to serve,
and immediately runs to the other side to cover that half. It's
surely still easier for the server than in singles.
a***e
发帖数: 2094
21
I have a video file in DAT format (it's just whatever format i grabbed from
a VCD).
I want to transfer the DAT format to mpeg, or avi, or rm, or flv, or wmv
blah...so ultimately i can transfer that into mov format for my ipod.
Yeah...i want to watch the dance instruction video while on the train :)
Could anybody kindly point me to right software? thx!
m******8
发帖数: 122
22
来自主题: Software版 - [求救]Excel的format问题
现有小数若干,例如0.006578
想把它format成6.58x10-03.
Excel里的scientific format只能format成6.58E10-3.
custom format里也没找到相应的。
拜托各位大侠了。
r*e
发帖数: 112
23
来自主题: Unix版 - how to find the help for format(5) ?
as title, how can I find the help infor for format(5)
man format , only gives me the help information for format , not
format(5)
Tx!
P****e
发帖数: 385
24
来自主题: Windows版 - Excel Conditional Formatting一问
Excel的Conditional Format,设置Font,Border,Pattern都没有问题,也显示正常。可是
这时候你如果在cell上点右键看Format Cells就发现在cell format属性中的字体,cell
颜色等等都没变,这样就无法进一步利用cell属性作进一步统计计算。
好像Conditional Format虽然可以改变cell的字体颜色等,可是似乎只是改变real time
的显示,在cell的属性里并没有改变。能否让cell的属性也随之改变呢?
w*****s
发帖数: 122
25
[April 10, 2000] FlowML: A Format for Virtual Orchestras. Bert Schiettecatte (Vrije Universiteit
Brussel) reports on the development of an XML-based format for musical notations - 'FlowML'.
"FlowML is a format for storing audio synthesis diagrams, as used in various software synthesizers. It
offers a way to store synthesis instruments as a graph of reusable synthesis blocks (defined in the format
specification). It differs from existing languages for audio synthesis like CSound,
s******o
发帖数: 298
26
By SPACE.com Staff
posted: 07:00 am ET
25 March 2002
A new picture from the Hubble Space Telescope shows a galaxy ablaze with star
formation.
NGC 7673 is a relatively nearby example of the type of vigorous star formation
that researchers think may have taken place in the early universe. Telltale
patches of blue light are signs of the formation of millions of new stars.
But researchers puzzle over why there is such a remarkable flurry of star
formation.
Either a near miss or a collision between N
g***e
发帖数: 4
27
来自主题: Biology版 - 内皮tube formation的怪现象
我也怀疑呢,没测proliferation,划痕就做了一次,似乎趋势和transwell一样.
我看有人说matrigel tube formation和细胞的侵袭,运动,还有什么什么有关,但我也在
很久以前貌似看到有篇很老的文献说迁移得弱的tube formation反而强,还说tube
formation不等同于在体的血管发育中的任何过程,只是一个间接反映细胞功能的指标.
但是这回出了这结果,再一查文献,都说迁移弱的tube formation也弱,简直是,难道当初
是做梦?
现在简直哪个结果都怀疑,恨不得都重新做一回.
g***e
发帖数: 4
28
来自主题: Biology版 - 内皮tube formation的怪现象
我也怀疑呢,没测proliferation,划痕就做了一次,似乎趋势和transwell一样.
我看有人说matrigel tube formation和细胞的侵袭,运动,还有什么什么有关,但我也在
很久以前貌似看到有篇很老的文献说迁移得弱的tube formation反而强,还说tube
formation不等同于在体的血管发育中的任何过程,只是一个间接反映细胞功能的指标.
但是这回出了这结果,再一查文献,都说迁移弱的tube formation也弱,简直是,难道当初
是做梦?
现在简直哪个结果都怀疑,恨不得都重新做一回.
c******j
发帖数: 270
29
来自主题: Statistics版 - SAS proc format的问题
写了这么一段code
LIBNAME Mylib 'C:\Documents and Settings\cloverzj\My Documents\SAS';
proc format lib=mylib;
value $itemfmt
'C'='Cassette'
'R'='Radio'
'T'='Television';
run;
data sasuser.orders;
infile aug99dat;
input ID 3. @5 Date date7.
Item $13 Quantity 15-17
Price 19-24 TotalCost 26-32;
format date date9. totalcost dollar9.2;
format Item $itemfmt.;
run;
proc print data=sasuser.orders;
run;
可是运行的时候总是说The format $ITEMFMT was not found or cou
A*******s
发帖数: 3942
30
Thanks guys. Finally I use input and put functions with arrays in data step
to transform data.
The only way I found to directly use "formatted value" is when "formatted
variable" is treated as categorical. E.g, proc freq with format statement. I
have yet found a way to deal with continuous "formatted variable". If
someone has a clue, plz share your experience.
c******5
发帖数: 22
31
不好意思,没有load过带format的sas dataset,所以请大家耐心解答下。
有一个SAS dataset, 它带了3个format files。 load 的时候把它们不能放在同一个
library中,因为名字一样。改了名字,也不work。 只好用原来的名字 ‘formats'放
在了3个地方,'work','sasuser',和一个自己建的library-proj1:
options fmtsearch =(Work Sasuser proj1)。 读入了大部分的format,但还有一些不
load。怎么 办呢?
谢谢解答!!!!
s******o
发帖数: 298
32
By SPACE.com Staff
posted: 07:00 am ET
25 March 2002
A new picture from the Hubble Space Telescope shows a galaxy ablaze with star
formation.
NGC 7673 is a relatively nearby example of the type of vigorous star formation
that researchers think may have taken place in the early universe. Telltale
patches of blue light are signs of the formation of millions of new stars.
But researchers puzzle over why there is such a remarkable flurry of star
formation.
Either a near miss or a collision between N
P**********9
发帖数: 418
33
看看这个免费的. DOWNSIDE: It won't recover your file name. The file name
will be like this "f12321323.jpg, f241343143.docx..."
Had a bit of trouble today: one of Vickie's two-gig thumb drives went
catatonic. All Windows could come up with was the scary message that the
disk in drive E wasn't formatted, and did she want to format it now? (Answer
try it on several machines, sacrifice a chicken--we came to the conclusion
that the thing's file system had broken.
So, armed with foggy memories of how Norton ... 阅读全帖
s********m
发帖数: 43
34
Location: Bridgewater, NJ 08807, US
Contact: email to h*******[email protected] with the position code specified
in the subject field.
Job CNMF10: Senior Researcher/Project Leader – Media Format and
Adaptation;
Job CNMF10 Requirements:

· Expert-level knowledge of video format with solid understanding
of video technologies such as formats, bit-rates, encoding, compression,
streaming, a
s********m
发帖数: 43
35
Location: Bridgewater, NJ 08807, US
Contact: email to h*******[email protected] with the position code specified
in the subject field.
Job CNMF10: Senior Researcher/Project Leader – Media Format and
Adaptation;
Job CNMF10 Requirements:

· Expert-level knowledge of video format with solid understanding
of video technologies such as formats, bit-rates, encoding, compression,
streaming, a
n*****g
发帖数: 274
36
现在看球基本看热闹。
场上的formation, 基本不懂xo。
玩maden之类的,是不是要玩家部署formation?
不知道能不能提高对这些formation的认识?
p****s
发帖数: 3153
37
...And he is jealous of pistol offense
Steve Young 'really jealous' of 49ers' pistol formation
By Gregg Rosenthal
San Francisco 49ers offensive coordinator Greg Roman told Around the League
on Thursday that the team doesn't run a "pistol offense." (They just use the
pistol formation.)
No matter what you call it, former 49ers quarterback Steve Young wishes he
played when the concept was around.
"I'm actually really jealous about the pistol. I think it's such a cool
thing," Young told Comcast ... 阅读全帖
K****D
发帖数: 30533
38
来自主题: Tennis版 - 双打有用过I formation的么?
I changed my mind. I think I formation is still better. In Aussie
formation (you stand at the same side with your LD), your LD has
to move fast to the other half court after serving and she needs
to be good at ground strokes.
In I formation, other than you being hit a few times, not really
too bad. But you have to communicate with your LD before she serves
which side you (and she) want to go. If you try to cover the whole
net, you will just be a 筛子。
K****D
发帖数: 30533
39
来自主题: Tennis版 - I Formation & Aussie Formation
Many I Formations. Some Aussie Formations (e.g. 4'04").
d*g
发帖数: 16592
40
来自主题: Tennis版 - 双打有没有人尝试过 i formation
相比i-formation,我和搭档用的比较多的是Australia formation。
我ad side发球如果对方擅长drop到反手,而对手网前球员又比较善于poach和overhead
,给我压力比较大的话,我就会用a-formation,这样就可以逼对方打我正手,或者只
能lob到我反手。
不过能很好drop我发球的我这个level的球员不算很多,所以用的也不算多,不过每次
效果都很好。
b***y
发帖数: 554
41
来自主题: DVD版 - DVD developers set for format war
(CNN) -- The electronics and entertainment industries are shaping up for the
biggest format battle since the "video wars" between VHS and Betamax to decide
the future of DVD.
Two rival "next generation" DVD formats look set to be launched onto the
marketplace next year.
Both are backed by powerful and well-known Japanese manufacturers, with each
staking their claim to an industry worth billions of dollars.
And with the DVD market unlikely to support parallel formats, the loser faces
the prospect
p******k
发帖数: 911
42
我在Ebay 上买了一个Florida卖家的D810, 收到相机后, 我看固件不是新的, 就准备
update firmware, 哪晓得 点击‘OK',后, 机器没有任何反应。 然后我就format SD
卡, 同样的事情发生了。 我赶紧联系卖家。卖家随即寄给我一台 0 shutter count
新机器。看看是崭新的, serial number 似乎也没有问题。 机器到手后, image
quality 所有 RAW 选项都grayed out.同样不能 update firmware, 不能format disk
. 我恢复厂家原来default setting 后, 能够选择 RAW, 但是依然不能format ,
update. 赶紧联系卖家, 把两台都退给他了。 看姓名, 像是国人。
小弟想请教懂行的人, 这是灰货的表现吗??机器看上去没有什么异样。 难道外壳里
面都是假货????
我是第一次在Ebay上买相机, 真的不幸运。
d*******8
发帖数: 321
43
救命啊,我的USB不能读了,每次要我format,但是又说不能format.USB里面有重要的
东西没有备份。谢谢各位大侠。
N*****a
发帖数: 2630
44
之前还好好的,突然说盘没有format, 于是去format,却说无法完成format,那就是说
彻底不能用了?
f******e
发帖数: 582
45
I have some data in ARM format. Which tool can I use to convert them to x86
format?
Thanks a lot.
T*****B
发帖数: 160
46
I want to output the the results in text format, which is in the range of 3GB.

Is there a way to open a writable File handle in gzip format, and write in
gzip format directly?
Many Thanks!
r*********6
发帖数: 7
47
【 以下文字转载自 Apple 讨论区 】
发信人: Rockets0716 (Rocket), 信区: Apple
标 题: How to convert AVI or RMVB format files to MP4 format?
发信站: BBS 未名空间站 (Mon Nov 12 13:01:15 2007)
Wanna play videos on my ipod, but tried lots of software and still didn't
worked out.
Anybody has free software recommending? If it can convert .mkv files that
would be great!
THX
f******e
发帖数: 582
48
I have some data in ARM format. Which tool can I use to convert them to x86
format?
Thanks a lot.
s******y
发帖数: 28562
49
来自主题: Biology版 - 内皮tube formation的怪现象
In principle, matrigel tube formation has something to do with cell invasion
, including the secretion of MMP and the formation of invapodia.
However the transwell migration reflect the overall chemotaxix property that
has very little relevence to invapodia.
These two assays measure very different aspect of cell motility. Therefore,
tube formation has nothing to do with transwell asssay, in principle.
Thise people who claimed they have a relationship are simply saying whatever
that is convenient
g***e
发帖数: 4
50
来自主题: Biology版 - 内皮tube formation的怪现象
谢谢回复,又看了看文献,我现在有些怀疑tube formation的增强是由于stress fiber被
抑制了(然而尚无证据,纯yy),但是文献净是说stress fiber促进tube formation(说来
说去就围绕vegf一个例子).我相信促进stress fiber的可能促进angiogenesis,然而仅
对于matrigel这个模型,我认为抑制stress fiber的促进tube formation,这是模型和实
际的差别(同样尚无证据,纯yy)
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)