全部版块 我的主页
论坛 计量经济学与统计论坛 五区 计量经济学与统计软件 Stata专版
4524 17
2013-06-21
0621.rar
大小:(343 Bytes)

 马上下载

本附件包括:

  • 0621.dta



. levelsof pt1
10.60000038146973 11.60000038146973 11.80000019073486 12.19999980926514 14.39999961853027 14.69999980926514 15.19999980926514


希望得到的结果是
10.6 11.6 11.8 12.2 14.4 14.7 15.2
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

全部回复
2013-6-21 22:04:36
g double p=round(pt1,.1)
levelsof p
di "`r(levels)'"
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

2013-6-22 09:35:40
sungmoo 发表于 2013-6-21 22:04
g double p=round(pt1,.1)
levelsof p
di "`r(levels)'"
好像还是不行

. clear

. set obs 10
obs was 0, now 10

. gen pt1=10*uniform()

. g double p=round(pt1,.1)

. levelsof p
.5 .9 2 2.9 3.7 3.8 4.100000000000001 5 8.1

. di "`r(levels)'"
.5 .9 2 2.9 3.7 3.8 4.100000000000001 5 8.1
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

2013-6-22 09:37:43
*改成字符可以
g  p=string(round(pt1,.1))
levelsof p
di r(levels)
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

2013-6-22 11:35:33
*改成字符可以
改成字符,要注意其中的引号

clear
set se 10000
set obs 10
g  p=string(round(10*uniform(),.1))

*注意以下的区别:
levelsof p,c
token r(levels)
n di `1'

levelsof p
token r(levels)
n di `1'

levelsof p,c
token `r(levels)'
n di `1'
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

2013-6-22 12:37:12
好像还是不行
这个要看初始数据的精度。随机数生成与其他输入还有些区别。

help data types

Precision of numeric storage types

    floats have about 7 digits of accuracy; the magnitude of the number does not matter.  Thus,
    1234567 can be stored perfectly as a float, as can 1234567e+20.  The number 123456789, however,
    would be rounded to 123456792.  In general, this rounding does not matter.

    If you are storing identification numbers, the rounding could matter.  If the identification
    numbers are integers and take 9 digits or less, store them as longs; otherwise, store them as
    doubles.  doubles have 16 digits of accuracy.

    Stata stores numbers in binary, and this has a second effect on numbers less than 1.  1/10 has
    no perfect binary representation just as 1/11 has no perfect decimal representation.  In float,
    .1 is stored as .10000000149011612.  Note that there are 7 digits of accuracy, just as with
    numbers larger than 1.  Stata, however, performs all calculations in double precision.  If you
    were to store 0.1 in a float called x and then ask, say, "list if x==.1", there would be nothing
    in the list.  The .1 that you just typed was converted to double, with 16 digits of accuracy
    (.100000000000000014...), and that number is never equal to 0.1 stored with float accuracy.

    One solution is to type "list if x==float(.1)".  The float() function rounds its argument to
    float accuracy; see [D] functions.  The other alternative would be store your data as double,
    but this is probably a waste of memory.  Few people have data that is accurate to 1 part in 10
    to the 7th.  Among the exceptions are banks, who keep records accurate to the penny on amounts
    of billions of dollars.  If you are dealing with such financial data, store your dollar amounts
    as doubles.  See float().



******
clear all
set ty float 或 double       /*对应不同结果*/
inp x
1.0
1.1
1.2
1.3
1.4
1.5
1.6
1.7
1.8
1.9
end

levelsof x
n di "`r(levels)'"

***比较保险且省事的方法是,用group()将各值转换(对应)为整数,再利用整数操作(使用levelsof)。
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

点击查看更多内容…
相关推荐
栏目导航
热门文章
推荐文章

说点什么

分享

扫码加好友,拉您进群
各岗位、行业、专业交流群