上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 180 下一页
摘要: import numpy as np a = np.arange(12) a.shape = 3,4 # 将数据存储为npy/npz np.save('a.npy', a) np.save('a.npz', a) c = np.load('a.npy') print('save-load:',c) 阅读全文
posted @ 2023-04-23 05:52 myrj 阅读(114) 评论(0) 推荐(0) 编辑
摘要: import numpy as np import pandas as pd file = np.load('x_train.npz',allow_pickle=True) #查看其中的npy文件名,其实npz文件就是由多个npy文件压缩而成的,winrar即可解压缩 for ii in file: 阅读全文
posted @ 2023-04-23 05:47 myrj 阅读(585) 评论(0) 推荐(0) 编辑
摘要: import OpenSSLModuleNotFoundError: No module named 'OpenSSL' pip install pyopenssl 阅读全文
posted @ 2023-04-22 21:26 myrj 阅读(510) 评论(0) 推荐(0) 编辑
摘要: program mysum, rclass syntax varname return local varname `varlist' tempvar new quietly { count if !missing(`varlist') return scalar N = r(N) gen doub 阅读全文
posted @ 2023-04-22 11:15 myrj 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Traceback (most recent call last): File "D:/statashu/dustata1.py", line 4, in <module> subprocess.call(cmd) File "D:\Python37\lib\subprocess.py", line 阅读全文
posted @ 2023-04-22 09:32 myrj 阅读(853) 评论(0) 推荐(0) 编辑
摘要: // sfi.Macro提供对Stata宏的访问。 // // 参数 内容 getGlobal(Name) 获取全局宏的内容 getLocal(Name) 获取局部宏的内容 setGlobal(name, value[, vtype]) 设置全局宏的值 setLocal(name, value) 设 阅读全文
posted @ 2023-04-22 05:45 myrj 阅读(20) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #求正整数的所有质数因子(如:180:2 2 3 3 5) main() { int m,i; scanf("%d",&m); for(i=2;i<=m;i++) { if(m%i==0) { printf("%3d",i); m=m/i; i=i-1; } } 阅读全文
posted @ 2023-04-20 20:06 myrj 阅读(123) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> void del_str(char a[],int n) { while(a[n-1]=a[n])n++; } main() { char a[]="adsfasd"; int n=3; del_str(a,n); put 阅读全文
posted @ 2023-04-20 16:16 myrj 阅读(86) 评论(0) 推荐(0) 编辑
摘要: with open('file.txt', 'r') as f: lines = f.readlines() with open('file.txt', 'w') as f: for line in lines: if line.strip(): f.write(line) 首先,我们使用`open 阅读全文
posted @ 2023-04-20 10:07 myrj 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 国内免费GPT https://chat.tuxiaozhi.com/?bd_vid=11464506001370123049 阅读全文
posted @ 2023-04-20 10:05 myrj 阅读(498) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 180 下一页