摘要:
#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 阅读全文
摘要:
#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(); } 阅读全文
摘要:
. bysort rep78: gen ab=_n . order ab,after(rep78) . bysort rep78: gen abb=sum(rep78) . order abb,after(rep78) 阅读全文
摘要:
//1.显示stata的系统路径 . sysdir STATA: D:\Stata17\ //stata软件的安装位置 BASE: D:\Stata17\ado\base\ //stata官方的命令及说明帮助文件 SITE: D:\Stata17\ado\site\ PLUS: C:\Users\z 阅读全文
摘要:
问题描述: 用能启动的光盘安装GHOST WINXP,安装正常,但启动时拿出光盘则不能启动,插入光盘选择从H 从硬盘启动,可正常。将启动顺序改为直接从硬盘启动则提示: Reboot and Select proper Boot deviceor Insert Boot Media in select 阅读全文
摘要:
use cfps2014adult_201906, clear label list brow if fid10 8 // inlist(z,a,b,.….)语法描述:当z满足a,b,….中的任何一个,则返回值为1,否则为0。所有参数必须是实数或者字符型数据, // 其中数值型参数的个数需要在2~2 阅读全文
摘要:
https://www.lianxh.cn/news/2916ae8363459.html https://www.xiaohongshu.com/explore/62fc6f8c00000000140361fa use cfps2018famecon_202101,clear keep fid18 阅读全文
摘要:
>>> attr={"class":"avdata card","data-hash-id":"data-hash-id"} >>> attr.keys() dict_keys(['class', 'data-hash-id']) >>> list(attr.keys()) ['class', 'd 阅读全文
摘要:
.edit //编辑查看当前数据 右击任意一数据,选择"数据"--"值标签"--可选择:从值标签赋值 附加值标签给变量 隐藏所有值标签等相关操作 //从值标签赋值:将13条观测值的tb1m_a_c9 利用值标签修改为-2 . replace tb1m_a_c9 = -2 in 13 . replac 阅读全文
摘要:
//字母小写转大写 . disp strupper("mybook") MYBOOK . disp strupper("da") DA //字母大写转小写 . disp strlower("ASDF") asdf //每个单词首字母大写 . disp strproper("this is a boo 阅读全文