上一页 1 ··· 132 133 134 135 136 137 138 139 140 ··· 341 下一页
摘要: readline() UnicodeDecodeError: 'gbk' codec can't decode byte 0xbd in position 7265: illegal multibyte sequence 解决方法 将 open(class_file_name, 'r') 改为 op 阅读全文
posted @ 2021-03-06 21:51 emanlee 阅读(367) 评论(0) 推荐(0)
摘要: Homo sapiens (human,人) Mus musculus (mouse,小鼠) Rattus norvegicus (rat,大鼠) Xenopus laevis (frog,爪蟾) Drosophila melanogaster (fruit fly,果蝇) Caenorhabdit 阅读全文
posted @ 2021-03-06 08:22 emanlee 阅读(40184) 评论(0) 推荐(0)
摘要: UPDATE tablename SET id = ROWNUM; 阅读全文
posted @ 2021-03-05 21:34 emanlee 阅读(467) 评论(0) 推荐(0)
摘要: oracle有点麻烦,需要使用序列和触发器达到目的。具体步骤如下:一、创建数据表create table AAA_employee(Id int ,DeptNo number,EmpNo number,Ename varchar2(16),Job varchar2(32),Sal float,Hir 阅读全文
posted @ 2021-03-05 20:19 emanlee 阅读(1221) 评论(0) 推荐(0)
摘要: import pydotimport graphviz from keras.utils import plot_model plot_model(model, to_file='model.png') ('Failed to import pydot. You must `pip install 阅读全文
posted @ 2021-03-05 08:32 emanlee 阅读(3534) 评论(0) 推荐(1)
摘要: You can plot a bigger graph by plotting each graph separately. For example, fig, (ax1,ax2,ax3) = plt.subplots(3,1, figsize=(15,8)) res.trend.plot(ax=a 阅读全文
posted @ 2021-03-04 18:34 emanlee 阅读(541) 评论(0) 推荐(0)
摘要: R Run as Administrator: install.packages('devtools') install.packages("fansi") library('devtools') install_github("MRCIEU/ieugwasr") install_github("W 阅读全文
posted @ 2021-03-03 16:16 emanlee 阅读(1596) 评论(0) 推荐(0)
摘要: Building wheels for collected packages: fbprophet Building wheel for fbprophet (setup.py) ... error ERROR: Command errored out with exit status 1: com 阅读全文
posted @ 2021-03-02 21:08 emanlee 阅读(1961) 评论(0) 推荐(0)
摘要: import numpy as np import matplotlib.pyplot as plt linestyle_str = [ ('solid', 'solid'), # Same as (0, ()) or '-' ('dotted', 'dotted'), # Same as (0, 阅读全文
posted @ 2021-03-02 20:19 emanlee 阅读(1714) 评论(0) 推荐(0)
摘要: .c(49): warning: #1-D: last line of file ends without a newline 最后一行回车后还要保证是在第一列,新一行不能有空格等空字符才能不出此警告 这是KEIL的bug: 需要代码文件的最后两行为空行,并且没有空格。 阅读全文
posted @ 2021-03-01 16:49 emanlee 阅读(2084) 评论(0) 推荐(0)
上一页 1 ··· 132 133 134 135 136 137 138 139 140 ··· 341 下一页