摘要: CBool,CByte,CCur,CDate,CDbl,Chr ,CInt ,CLng 阅读全文
posted @ 2021-04-02 15:37 bellin124 阅读(189) 评论(0) 推荐(0) 编辑
摘要: Python绘制双轴组合的关键在plt库的twinx()函数,具体流程: 1.先建立坐标系,然后绘制主坐标轴上的图表; 2.再调用plt.twinx()方法; 3.最后绘制次坐标轴图表。 import cx_Oracle import xlrd import xlwt import matplotl 阅读全文
posted @ 2021-04-02 14:58 bellin124 阅读(7128) 评论(2) 推荐(0) 编辑
摘要: python matplotlib 多簇柱状图: 统计机器人15天搬运量与机台产出对比,上下货方式为机器人+人工 import xlrd import matplotlib.pyplot as plt import numpy as np plt.rcParams['font.sans-serif' 阅读全文
posted @ 2021-04-02 14:04 bellin124 阅读(923) 评论(0) 推荐(0) 编辑
摘要: oracle中计算某月的天数: 程序中在to_date(参数,'mm')输入参数就可以了 select to_date('03','mm') from dual --输出 --2021/3/1 select add_months(to_date('202102', 'YYYYMM'),1)-to_d 阅读全文
posted @ 2021-04-02 13:22 bellin124 阅读(1142) 评论(0) 推荐(0) 编辑