上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 181 下一页
摘要: >>> np.sctypeDict {'?': <class 'numpy.bool_'>, 0: <class 'numpy.bool_'>, 'byte': <class 'numpy.int8'>, 'b': <class 'numpy.int8'>, 1: <class 'numpy.int 阅读全文
posted @ 2023-09-27 11:07 myrj 阅读(65) 评论(0) 推荐(0) 编辑
摘要: import numpy as np arr=np.arange(0,10,1) arr1=np.arange(0,1,0.1) array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) array([0. , 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 阅读全文
posted @ 2023-09-27 10:15 myrj 阅读(9) 评论(0) 推荐(0) 编辑
摘要: >>> for ii in range(1,10,0.1): print(ii) Traceback (most recent call last): File "<pyshell#4>", line 1, in <module> for ii in range(1,10,0.1):TypeErro 阅读全文
posted @ 2023-09-27 10:11 myrj 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-09-26 06:11 myrj 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-09-26 06:05 myrj 阅读(54) 评论(0) 推荐(0) 编辑
摘要: excel 全角数字转半角:利用函数asc() 删除空白行列宏实现 Sub 检查所有工作表删除空白行列() For icount = 1 To Sheets.Count maxrow = Sheets(icount).UsedRange.Rows.Count maxcol = Sheets(icou 阅读全文
posted @ 2023-09-20 20:33 myrj 阅读(140) 评论(0) 推荐(0) 编辑
摘要: ①Stata中数值变量显示的格式有三种。e为科学指数格式,f为固定格式,g为普通格式。表达式中“.”前数字代表变量的宽度,也就是所占的字符数。表达式中“.”后数字代表数值小数点后的数位。f后面加字母c则要求Stata给出带“,”的数字显示格式。 举例:%9.2f代表该变量的宽度为9,小数点后保留2位 阅读全文
posted @ 2023-09-15 14:14 myrj 阅读(699) 评论(0) 推荐(0) 编辑
摘要: import glob file_list = glob.glob('id2neg*.txt') # 获取文件夹下所有的txt文件 with open('merged_file.txt', 'w') as merged_file: for file_name in file_list: with o 阅读全文
posted @ 2023-09-15 07:06 myrj 阅读(30) 评论(0) 推荐(0) 编辑
摘要: import random,string,json,pymysql import pandas as pd connect = pymysql.connect(user = '', password = 'h', db = 'g, host = 'r', port = 3306, charset = 阅读全文
posted @ 2023-09-13 16:11 myrj 阅读(23) 评论(0) 推荐(0) 编辑
摘要: DELIMITER // CREATE TRIGGER before_insert BEFORE INSERT ON table_name FOR EACH ROW BEGIN SET NEW.column_name = CONVERT(OLD.column_name, data_type); EN 阅读全文
posted @ 2023-09-13 15:34 myrj 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 181 下一页