上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
  2022年1月20日
摘要: ''' 一个学科 一个语言为一类 一年为单位进行统计 统计发表前五年被引情况 ''' import xlrd import numpy as np import matplotlib.pyplot as plt import pandas as pd #data.iloc[10:,111:] # 设 阅读全文
posted @ 2022-01-20 17:55 cookie的笔记簿 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 动态变量名赋值 # 利用命名空间动态赋值 names = locals() for i in range(4,19): names['sum5_' + str(i) ] = i 调用动态变量 for i in range(4,19): print(names.get('sum5_' + str(i) 阅读全文
posted @ 2022-01-20 17:31 cookie的笔记簿 阅读(98) 评论(0) 推荐(0) 编辑
  2022年1月19日
摘要: pink老师前端课程——注册页面 大框架如下,设置了一个容器container后,左边放置的是一张图片,右边是表格,表格中包含一个form。使用的html内容包括。 表格 列表 表单 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta 阅读全文
posted @ 2022-01-19 15:25 cookie的笔记簿 阅读(127) 评论(0) 推荐(0) 编辑
  2022年1月18日
摘要: https://www.zhihu.com/people/mo-ming-qi-miao-79-32 2019版word: 文件——更多——选项——显示——显示所有格式标记 在需要排版的文字首尾添加连续分节符 编辑两栏 阅读全文
posted @ 2022-01-18 10:26 cookie的笔记簿 阅读(948) 评论(0) 推荐(1) 编辑
  2022年1月14日
摘要: 旋转魔方 老师授课的时候是将代码都写在html中,为了今后更好地熟练掌握html与css以及js文件之间的联系,我将代码分开编写了。 html文档中: <link rel="stylesheet" type="text/css" href="css/***.css"> <script type="t 阅读全文
posted @ 2022-01-14 14:50 cookie的笔记簿 阅读(37) 评论(1) 推荐(0) 编辑
  2021年12月17日
摘要: https://jingyan.baidu.com/article/73c3ce28fd1e82a40243d94a.html 直接编号 引用 交叉引用就好啦 阅读全文
posted @ 2021-12-17 15:17 cookie的笔记簿 阅读(220) 评论(0) 推荐(0) 编辑
  2021年11月3日
摘要: plt绘制子图 plt.subplot(221) # equivalent but more general # 子图1 ax1 = plt.subplot(2, 2, 1) # add a subplot with no frame # 子图2 ax2 = plt.subplot(222, fra 阅读全文
posted @ 2021-11-03 19:41 cookie的笔记簿 阅读(2841) 评论(0) 推荐(0) 编辑
摘要: #设置横纵坐标的名称以及对应字体格式 font2 = {'family' : 'Times New Roman', 'weight' : 'normal', 'size' : 15 } plt.xlabel('Year',font2) plt.ylabel('Citations',font2) fi 阅读全文
posted @ 2021-11-03 19:38 cookie的笔记簿 阅读(1975) 评论(0) 推荐(0) 编辑
  2021年10月27日
摘要: 使用dtaidistance实现dtw算法(二) 1、实现两两序列之间的距离计算 # DTW Distance Measures Between Set of Series 查看两两序列之间的距离 from dtaidistance import dtw import numpy as np # T 阅读全文
posted @ 2021-10-27 09:59 cookie的笔记簿 阅读(1222) 评论(0) 推荐(0) 编辑
  2021年10月20日
摘要: 对excel进行操作,有别于csv,具体的表现在excel是一个工作簿,csv只有一个表。详细的需要进一步整理。 import numpy import xlrd import matplotlib.pyplot as plt from scipy.optimize import leastsq X 阅读全文
posted @ 2021-10-20 09:40 cookie的笔记簿 阅读(993) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页