由买买提看人间百态

topics

全部话题 - 话题: format
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
x*y
发帖数: 364
1
来自主题: Computation版 - CSC format matrix + CSC format matrix ?
I need to implement CSC format matrix + another CSC format matrix which has
same row and column sizes. Does anybody know if there exists any subroutine
that can realize this? Thanks
a******e
发帖数: 88
2
刚刚收到信,如下
ADDITIONAL INFORMATION ON DELAY IN SCORE REPORTING FOR USMLE STEP 2 CK
On June 16, 2011, an announcement was posted to the USMLE website at www.
usmle.org introducing the new test items with an associated drug ad or
abstract into the USMLE Step 2 CK examination starting on or around August 3
. A description of the purpose of these new item formats is provided in the
Comprehensive Review of USMLE update available on the USMLE website at www.
usmle.org/General_Information/CRU/index.html.
... 阅读全帖
m**5
发帖数: 54
3
来自主题: MedicalCareer版 - CK score-99 with new question format
I got the score today and it still gives me 3 digits-99. Compare to big niu
here, this 99 is medium one. But I did with new format. The other
experiences are almost same: UW+MTB2/3. For new format questions, I would
say: don't worry too much as long as your reading comprehension is good, you
will be ok. I had high on biostat and in the real exam, I know
I am pretty correct. From my experience, (just for you reference), UW is far
away deviate from the real exam. The most important thing is to rea... 阅读全帖
z*********o
发帖数: 541
4
来自主题: Statistics版 - format statement
104. The following SAS program is submitted:
proc format;
value score 1 - 50 = 'Fail'
51 - 100 = 'Pass';
run;
proc report data = work.courses nowd;
column exam;
define exam / display format = score.;
run;
The variable EXAM has a value of 50.5.
How will the EXAM variable value be displayed in the REPORT procedure
output?
A. Fail
B. Pass
C. 50.5
D. . (missing numeric value)
Answer: C
这道题是不是在1 - 50 = 'Fail' 51 - 100 = 'Pass'; 有问题? 应该是1-<50 = 'Fail'
51-<100 = 'Pass';? 所以在format并没有执行?
y*****5
发帖数: 62
5
来自主题: Statistics版 - SAS format 的问题
proc print的时候,我想关掉format,只看没被format之前的值。
比如说原来用1,2来代表性别,format之后,我只能看到男和女。
现在我想看1,2。什么命令呢?
谢谢大家
m*i
发帖数: 8
6
Hi Dear All,
I need read a data.dat file into sas. The problem is this data.dat file is
associated with format files. One is formats.sas7bcat (looks like a folder)
and the other one is formats.sas.
Anyone knows how to put them together that I can read the data.dat file into
SAS.
Any help is appriciated.
Thanks in advance.
x***x
发帖数: 3401
7
来自主题: Statistics版 - 如何用macro修改format value
Again, the problem is how to modify the value of city. using a macro.
The change from "1. Beijing" to "Beijing" should be done by the macro.
I did NOT mean to manually change the format value and then use a macro to
attach the new format to the variable.
The goal is to call a macro to modify the format value automatically.
A*******s
发帖数: 3942
8
来自主题: Statistics版 - 如何用macro修改format value
1. CNTLOUT=DS option to create a dataset DS about the original format
2. change DS according to your new format;
3. CNTLIN=DS , load the new format.
Not sure if it works.
s********l
发帖数: 245
9
来自主题: Statistics版 - 请教如果用SAS读有format的excel data?
工作中间遇到这样一个问题:需要用SAS从很多excel sheet中间读取数据, 但是有些行
的数据被format了。比如某一行的第一列是个时间的format 11/19/2010. 而这行的其
他列都是一般整数形式数据。但是当我用SAS来读取这些数据的时候,在SAS生成的数据
的时候,这行所有的数据都成时间的format的形式。有什么方法可以保持原来的整数形
式。谢谢。
c****o
发帖数: 69
10
来自主题: Statistics版 - how to use time format in SAS
when I read date format records into SAS from txt, what format should I use?
in txt i have:
Date
2010-05-05 00:00:00
in the input statement, what format should i use?
input date datetime?
Thanks!!
p*****o
发帖数: 543
11
I have the character format value for one variable:
Date
2010-05-05 00:00:00 --- character format
But I want to change it into datetime format. How can I do it?
I tried:
date_new = input(Date, YYMMDD10.) -- But this wont give me time information
I also tired:
date_new = input(Date, Datetime.) -- but failed...
Anyone can help me on it?
p***r
发帖数: 920
12
来自主题: Statistics版 - How to use Proc format
I'm wondering if I can use proc format to perform task like calculating
the tax. and I need to call the value to do the calculation when using the
format. Roughly like this
proc format
value a
0-30000 = a*.1
30000-60000 = 30000*.1 + (a-30000)*.25
60000-80000 = 30000*.1 + 30000*.25 + (a-60000)*.30
80000-120000 = .....
;
run;
Can I do this?
p***r
发帖数: 920
13
a simplified case:
format
value fmt
1= 'one'
...
111= 'one'
2= 'two'
...
299= 'two'
...
other = 'Others'
;
run;
when applied this format on the variable A, i want to subset the data
set which A values are 'others'. such as
data new;
set old;
format A fmt.;
run;
data sub
set new;
if A = "Others"; /*Where the error happens*/
run;
This seems cannot be done. A and "Other" are not of the same data
type. How can I do this ?
k*******a
发帖数: 772
14
来自主题: Statistics版 - SAS中FORMAT问题求教
试试这个办法
1. 通过sashelp.vcolumn 这个view, 找出你的data里面所有 format 不为空的数值变量的
变量名和format,然后分别把他们存为 macro variable
2.读你的data, 对每个macro里面的variable,用 put转换为对应的format后看是不是
'NA'
c******5
发帖数: 22
15
谢谢你的回答。 所以您也觉得可能是format文件本身有问题? 我指定format位置没有
问题吧? 还有,你觉得我把3个format文件重新命名放在一个library这样是不是比放
在三个地方要好?
你的签名档很有趣~~ ^_^
k****i
发帖数: 347
16
来自主题: Statistics版 - 包子问,SAS里data long to wide format
如果data在long format下是每个人有多行observation,但是# of obs并不固定
比如第一个人50行,第二个人33行,第三个人42行。。。
variable数目很大(>100),x1, x2, x3 ...
这种情况下想转换成wide format,也就是每人只有一行,但是variable要transpose成
x1_1, x1_2, x1_3, ... x1_n, x2_1, x2_2, x2_3, ... x2_n, x3_1, x3_2, x3_3, ..
. x3_n
似乎一般的data step long to wide format办法不行(因为每个人# of obs不固定会
导致out of range error?)
求可运行的sas macro/code
s********a
发帖数: 154
17
我有一个sas dataset, variables 全是numeric type, 并且每个variable都有
format, 我现在要把这个dataset 输出到excel,期望输出的dataset在excel里,
variable 的format value 在左边,真实值在右边。 大家有啥快捷的方法么?貌似用
proc export 每次只输出真实值,user created format excel 不认识。
h******n
发帖数: 1838
18
我想要的物品:
HP Officejet 7000 Wide Format Printer $105
单张面值:
可接受的价格 (required):
HP Officejet 7000 Wide Format Printer $105
物品新旧要求:
New, UPC intact.
邮寄方式要求:
My Label
买卖双方谁承担邮寄损失(required if not code only):
in system,me;before you
付款方式说明:
paypal pay
其他补充说明:
广告的有效期:
till got
物品来源:
Staples
我的联系方式:
pm
s*****n
发帖数: 994
19
我想卖的物品:
1x Epson Stylus Photo R1900 Large Format Photo Printer
随时可以drop。
可接受的价格(必须明码标价!):
$180 OBO
物品新旧要求:
used 4 months. almost new and functional excellent
邮寄方式要求:
UPS
买卖双方谁承担邮寄损失(Required if not code only):
Before me, after you
付款方式说明:
boa
广告的有效期:
till gone
我的联系方式:
PM or 5127887163
二手交易风险自负!请自行验证是否合法和一手卡!
PS:
Epson R1900 Large Format Photo Printer. Bought this printer 4 months ago,
printed only like ten pictures that most of the original ink cartirdiges are
still 80%. I will move so I can't b... 阅读全帖
w********t
发帖数: 5586
20
来自主题: Classified版 - [求购]Staples EGC 0.90 Rate PDF formate
我想要的物品:
Staples EGC 0.90 Rate PDF formate
单张面值:
可接受的价格(必须明码标价!):
.90 RATE 200 面额。。
物品新旧要求:
PDF
邮寄方式要求:
买卖双方谁承担邮寄损失(Required if not code only):
付款方式说明:
Billpay
其他补充说明:
广告的有效期:
物品来源:
cashstar
我的联系方式:
PM
Please email amount you have and format.
二手交易风险自负!请自行验证是否合法和一手卡!:
c*******l
发帖数: 769
21
【 以下文字转载自 Hardware 讨论区 】
发信人: chinohill (chinohill), 信区: Hardware
标 题: 海美迪himedia hd900a开机后黑屏显示invalid format怎么处理?
发信站: BBS 未名空间站 (Mon Apr 2 21:47:05 2012, 美东)
海美迪himedia hd900a开机后,显示海美迪logo之后,直接黑屏,右下角显示invalid
format怎么处理?
c*********8
发帖数: 125
22
来自主题: Faculty版 - 一个包子求PNAS Endnote format file.
不是endnote自带的那个format,至少我的Endnote版本那个PNAS format output 跟网
站上要求格式完全不一样.
谢谢先!
h******n
发帖数: 1838
23
我想要的物品:
HP Officejet 7000 Wide Format Printer $105
单张面值:
可接受的价格 (required):
HP Officejet 7000 Wide Format Printer $105
物品新旧要求:
New, UPC intact.
邮寄方式要求:
My Label
买卖双方谁承担邮寄损失(required if not code only):
in system,me;before you
付款方式说明:
paypal pay
其他补充说明:
广告的有效期:
till got
物品来源:
Staples
我的联系方式:
pm
s*****n
发帖数: 994
24
我想卖的物品:
1x Epson Stylus Photo R1900 Large Format Photo Printer
随时可以drop。
可接受的价格(必须明码标价!):
$180 OBO
物品新旧要求:
used 4 months. almost new and functional excellent
邮寄方式要求:
UPS
买卖双方谁承担邮寄损失(Required if not code only):
Before me, after you
付款方式说明:
boa
广告的有效期:
till gone
我的联系方式:
PM or 5127887163
二手交易风险自负!请自行验证是否合法和一手卡!
PS:
Epson R1900 Large Format Photo Printer. Bought this printer 4 months ago,
printed only like ten pictures that most of the original ink cartirdiges are
still 80%. I will move so I can't b... 阅读全帖
w********t
发帖数: 5586
25
来自主题: FleaMarket版 - [求购]Staples EGC 0.90 Rate PDF formate
我想要的物品:
Staples EGC 0.90 Rate PDF formate
单张面值:
可接受的价格(必须明码标价!):
.90 RATE 200 面额。。
物品新旧要求:
PDF
邮寄方式要求:
买卖双方谁承担邮寄损失(Required if not code only):
付款方式说明:
Billpay
其他补充说明:
广告的有效期:
物品来源:
cashstar
我的联系方式:
PM
Please email amount you have and format.
二手交易风险自负!请自行验证是否合法和一手卡!:
M*******8
发帖数: 85
26
【 以下文字转载自 Programming 讨论区 】
发信人: Mueller08 (简单,真实), 信区: Programming
标 题: 怎么把 integer 转为 multi-byte integer format?
发信站: BBS 未名空间站 (Sun Feb 21 16:01:15 2010, 美东)
下面的例子是怎么把0xA0 转为 0x81 和 0x20 的? 看不懂, 能不能给讲讲, 谢谢
How to transfer an integer to multi-byte integer format?
For example, the integer value 0xA0 would be encoded with the two-byte
sequence 0x81 0x20. The integer value 0x60 would be encoded with the one-
byte sequence 0x60.
l******9
发帖数: 579
27
【 以下文字转载自 Quant 讨论区 】
发信人: light009 (light009), 信区: Quant
标 题: change year format in Access by SQL query
发信站: BBS 未名空间站 (Mon Oct 13 12:50:53 2014, 美东)
I am working on Access 2012 on win 7. In a table, I need to change a year
date format from '1-Jan-06' to 2006 and from '1-Jan-90' to 1990. I only need
year.
This is my query
SELECT *,
CASE
WHEN CAST(right(year_date,2) , INT) <= 12
THEN 2000 + CAST(right(year_date,2) , INT)
ELSE 1900 + CAST(right(year_date,2) , INT)
END
FROM my_table;
I ... 阅读全帖
l******e
发帖数: 341
28
想给娃买书,但只要paper back和School&Library Binding两种format,娃两岁半,担
心会撕坏paper back的书,所以想买类似于baord book format的,但没有,这种
School&Library Binding不知是不是类似hardcover 或者baord book。
a*****a
发帖数: 19262
29
不建议交易打印胖子;胖子是免费的,收费的是服务:
出售/交换物品的名称:
Huggies 3off coupon pdf format
物品类别(coupon:mfc等;血糖仪等):
mfc coupon
pdf format
物品来源(报纸夹页,厂家邮寄等):
coupons.com
可接受的价格(必须明码标价,必填):
3 baozi for each one
邮寄损失方式哪方承担(若需邮寄,必填):
N/A
付款方式说明:
baozi
本贴有效期(必填):
until it\'s gone
联系方式(例: 站内):
站内
I******6
发帖数: 500
30
【 以下文字转载自 Stock 讨论区 】
发信人: IamOK666 (Ok 666), 信区: Stock
标 题: TaxCut 2008 可以Import .TXF (Gainskeeper format)??
发信站: BBS 未名空间站 (Mon Mar 2 03:34:06 2009)

I used Taxcut 2006 and it can import TXF, but last year it can not.
Will tax cut 2008 be able to import TXF format?
Thanks,
OK666
j*****a
发帖数: 489
31
来自主题: Immigration版 - RFE: meida format
Note : The evidence submitted should be specific to the media format in
which it was published. If the material was published online, the evidence
should relate to the website. If it was published in print, the evidence
should relate to the printed publication.
我的问题是:如果是电视报道,怎么弄才是他们要的format??
谢谢了.
p****r
发帖数: 9164
32

刚才想format 硬盘上的一个drive, 但不小心把连在机器上一个外接硬盘给format
了, 我看到错了马上把usb 线给拔了, 但现在机器已经不认这个硬盘了,说要格式化
后才能读。
放狗差了一下,看多好多个软件做这个的。 各位大牛说那个软件最安全? 免费的
最好了。 是windows 8 系统

里面好多重要数据啊 :((
先谢过兄弟们了! 定大号包子答谢有用信息
K*********n
发帖数: 2852
33
不知道别乱说
format就是format了,又不是分区表问题
p******o
发帖数: 2682
34
New Format for Blue-White Game
Receiver Justin Brown of the offense. By Mark Brennan
FightOnState.com
Posted Apr 19, 2012
Share on twitterShare on facebook| More Sharing ServicesMore
It will be offense vs. defense in Penn State's spring scrimmage at Beaver
Stadium Saturday. Get the lowdown on the format and scoring system right
here.
Penn State's annual Blue-White Game will have a completely different look
under first-year coach Bill O'Brien.
Under former coach Joe Paterno and his staff, the ... 阅读全帖
a*m
发帖数: 6253
35
来自主题: Tennis版 - 双打有用过I formation的么?
with I-format, therequirement for net player is much lower cause you will
have a lot easy put away.
I saw 25% of metches had I-format showed up here in 4.5 doubles. Not thru
the whole match, but for certain styles i mentioned: to break a pattern, to
force returnee to go down the line, etc.
K****D
发帖数: 30533
36
Aussie Formation就是双打时候,网前的队友不站在斜对面,而是就站在
前面,和你在同一侧。这样,你发完球后需要立刻跑到另一侧场地准备
接球,而队友不动。
这和普通formation的区别在于:
1)对发球选手的跑动、底线要求更高。因为如果发完球,对手return
down the line的话,你要能够接到。
2)对网前选手要求降低。只需要防住cross court return, 比通常情况下
防down the line反应时间长一些,而且角度也小一些。
根据1和2,似乎更适合如下组合:
1)发球者发球不如底线。
或者
2)网前者volley不行。
或者
3)对方接发球实在太强。
似乎偶这种单打选手比较适合?
K****D
发帖数: 30533
37
来自主题: Tennis版 - I Formation & Aussie Formation
Another lower level example:
After realizing their opponent's cross court return was too strong, they
switched to Aussie Formation starting 3'51".
m****z
发帖数: 978
38
来自主题: Tennis版 - 双打有没有人尝试过 i formation
My partner who is 4.0 with good volley talked me into it a few time. Of
course, we only
did it, when I serve and when he is at net. (I am not 4.0, not even close.)
I don't like it that much.
1. The server has to be able to really control the location of the serve. I
think Down the T is the best. If we cannot control the spot really well, I-
formation will not be very helpful.
2. The serve needs to have some what fast 1st serve. If returner has all
day, they will find the line, and make us l... 阅读全帖
K****D
发帖数: 30533
39
来自主题: Tennis版 - 双打有没有人尝试过 i formation
什么时候偶要试试反a-formation. 就是接发球用A-formation,专门对付2发不行的。

overhead
h*d
发帖数: 19309
40
Joe Danger could appear on other formats News
Xbox 360 PlayStation 3 News by Tom Bramwell
Today 16:06
Joe Danger developer Hello Games has said that it may consider porting its
PlayStation 3 title to other formats, including Xbox 360, but it would have
been humanly impossible to get the game out on multiple platforms initially.
"It does run on 360. I shouldn't say that, but it does," Hello MD Sean
Murray joked on the Eurogamer.net Podcast today.
"We're just four dudes making the game. It takes e
c*******o
发帖数: 1722
41
来自主题: PhotoGear版 - Mamiya 645 ProTL Medium Format SLR
honetly, i do not have medium format.
but if you want to print out large copies, bigger format is always
better. for me, 50-inch print from 35mm is good enough.
y*b
发帖数: 3190
42
http://www.sonyalpharumors.com/
Hasselblad confirmed they will launch the new H5D-50C Medium format camera
in March and it features the first CMOS(!) medium format sensor.
p******k
发帖数: 911
43
这不是procedure how to update or format
我已经把 bin 文件拷贝在SD卡里面, 然后插入机器里,
然后提示是否从 1.10 升级到1.11
当你回答ok to 'yes', nothing happens
format sd 时候也是, 是否删除所有文件, 回答 ok to 'yes', nothing happens
y*b
发帖数: 3190
44
来自主题: PhotoGear版 - Fujifilm MEDIUM FORMAT Camera Coming?
Fujifilm MEDIUM FORMAT Camera Coming with 2 Primes and 1 Zoom Lens – New
Source
http://www.fujirumors.com/fujifilm-medium-format-camera-coming-2-primes-1-zoom-lens-new-source/
w**********r
发帖数: 1320
45
来自主题: Whisper版 - [转载] Format一段data
【 以下文字转载自 Love 讨论区 】
【 原文由 raisin 所发表 】
Format
曾经说过如果有一天我想忘记,我会format我的整个计算机。这样的
时刻最终还是来了,只是在说分手的10个月之后。 这10个月却好像是10年一般的漫长。
身边来来去去,自己心情潮起潮落。最终还是一片曲终人散的狼藉。
终于将计算机重装,毁去了几千封email,那些纠缠在过去几年的人们终不在出现。
一切都是那么的干干净净。稍微有些心痛的是,那些陪我渡过快乐,和忧伤的mp3也一样
消失于无形。
忽然之间,再一次看到了感情的虚无,一句虚伪的祝福之后,可以忘掉所有的痕迹。只有
在梦中才会浮现某些模糊的影子,心却已咫尺,天涯。
Note:
今天是她的生日,我以前说过,祝她有生的日子天天快乐。但是事情的发展确是那么的
戏剧性,终于我们明白了感情的脆弱。 我曾经与她笑曰,如果我会为哪个女孩子哭泣,那么
我一定会死在她的手里。夏天的那个午后,我确实放声大哭过。记不得多少个清晨,
醒来时枕边留下的痕迹。深信我们从此不会交叉,从此不会有任何的接触。我仍然祝福
那条爱哭的双鱼,忘记她给我的伤,我让她的痛。
一段情带来
a*****n
发帖数: 44
46
Is yours hard copy or epub format? If epub format, can you share with me?
I have two hard copies, but I want to have a epub version for my cook, which
is more convenient when I travel.
T*****T
发帖数: 640
47
Hi:
Does anyone like to help me confirm / share the definition of the following
technical terms in a drawing in Japanese format (I guess it is of a Japanese
format.):
面本数, Is it talking about the surface power in fringes?
亚斯
P-V值(最适R适用后)Is it talking about IRR P-V value?
T*****T
发帖数: 640
48
Hi:
Does anyone like to help me confirm / share the definition of the following
technical terms in a drawing in Japanese format (I guess it is of a Japanese
format.):
面本数, Is it talking about the surface power in fringes?
亚斯
P-V值(最适R适用后)Is it talking about IRR P-V value?
b*****a
发帖数: 1732
49
【 以下文字转载自 Running 讨论区 】
发信人: ironman2015 (ironman circa 2015), 信区: Running
标 题: FREE "Runner's World" in digital format
发信站: BBS 未名空间站 (Mon Jan 3 17:59:06 2011, 美东)
Get magazines such as runner's world for free in digital format!
http://sportline.com/freedigital
m*****y
发帖数: 120
50
来自主题: Database版 - mysql: how to format output?
Does anyone know how to format the output from mysql?
I issue a query (such as select A, B, from table C), and redirect the
results to a file. But I want to contact the format, such as whether to use
"|" as default delimiter to columns, or use "-" in the output header and
tails.
Thanks.
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)