上一页 1 ··· 51 52 53 54 55 56 57 58 59 ··· 188 下一页
摘要: stata 统计每行各个变量共有几个是缺失值: //增加新变量miss,统计当前行观测值有几个缺失值 egen miss=rowmiss(_all) ​​​ 阅读全文
posted @ 2023-03-15 08:08 myrj 阅读(480) 评论(0) 推荐(0)
摘要: webuse hbp2, clear //不显示值标签,只显示实际保存值 tab race ,nolabel // // Race | Freq. Percent Cum. // + // 1 | 196 17.41 17.41 // 2 | 773 68.65 86.06 // 3 | 157 1 阅读全文
posted @ 2023-03-15 05:56 myrj 阅读(1600) 评论(0) 推荐(0)
摘要: #include <stdio.h> main() { float a=-3.14153265; printf("%8.4f\n",a) ; printf("%7.4f\n",a) ; printf("%6.4f\n",a) ; printf("%5.4f\n",a) ; printf("%4.4f 阅读全文
posted @ 2023-03-14 20:41 myrj 阅读(703) 评论(0) 推荐(0)
摘要: #include <stdio.h> //整数赋值给字符型变量 //353转2进制:1 01100001 =256 64 32 1 353-256=97 main() { int n=353; char c; c=n; printf("%c %d %x",c,c,c); getchar(); } 阅读全文
posted @ 2023-03-13 21:43 myrj 阅读(245) 评论(0) 推荐(0)
摘要: . bysort rep78: gen ab=_n . order ab,after(rep78) . bysort rep78: gen abb=sum(rep78) . order abb,after(rep78) 阅读全文
posted @ 2023-03-13 20:59 myrj 阅读(635) 评论(0) 推荐(0)
摘要: //1.显示stata的系统路径 . sysdir STATA: D:\Stata17\ //stata软件的安装位置 BASE: D:\Stata17\ado\base\ //stata官方的命令及说明帮助文件 SITE: D:\Stata17\ado\site\ PLUS: C:\Users\z 阅读全文
posted @ 2023-03-13 10:57 myrj 阅读(2893) 评论(1) 推荐(0)
摘要: 问题描述: 用能启动的光盘安装GHOST WINXP,安装正常,但启动时拿出光盘则不能启动,插入光盘选择从H 从硬盘启动,可正常。将启动顺序改为直接从硬盘启动则提示: Reboot and Select proper Boot deviceor Insert Boot Media in select 阅读全文
posted @ 2023-03-12 05:20 myrj 阅读(988) 评论(0) 推荐(0)
摘要: use cfps2014adult_201906, clear label list brow if fid10 8 // inlist(z,a,b,.….)语法描述:当z满足a,b,….中的任何一个,则返回值为1,否则为0。所有参数必须是实数或者字符型数据, // 其中数值型参数的个数需要在2~2 阅读全文
posted @ 2023-03-10 06:02 myrj 阅读(443) 评论(0) 推荐(0)
摘要: https://www.lianxh.cn/news/2916ae8363459.html https://www.xiaohongshu.com/explore/62fc6f8c00000000140361fa use cfps2018famecon_202101,clear keep fid18 阅读全文
posted @ 2023-03-09 21:02 myrj 阅读(162) 评论(0) 推荐(0)
摘要: >>> attr={"class":"avdata card","data-hash-id":"data-hash-id"} >>> attr.keys() dict_keys(['class', 'data-hash-id']) >>> list(attr.keys()) ['class', 'd 阅读全文
posted @ 2023-03-09 16:43 myrj 阅读(65) 评论(0) 推荐(0)
上一页 1 ··· 51 52 53 54 55 56 57 58 59 ··· 188 下一页