from openpyxl import load_workbook'''
@File    :
@Author  :  william
@Time    :  2020/09/29
@notice  :  null
@coding  : utf-8
'''
# import xlrd
# from xlutils.copy import copy
import openpyxl# 下一步还得训练程序
# 使其满足对excel文件名和excel工作薄的识别
# 记得把表格再粘贴下,转成仅值ws = 0
row_result = 0
column_result = 0
result = 0#####################################################################锁定资产负债表和工作薄
# 如下代码用于多个相关表的打开操作
fn = '资产负债表.xlsx'
wb = openpyxl.load_workbook(fn)ws = wb.get_sheet_by_name('资产负债表')# print(ws)def getdate(date_row, date_column):# print(date_row)# print(date_column)for row in ws.iter_rows():for cell in row:if str(str(cell.value).replace(' ', '')).find(date_row) != -1:row_result = cell.row# print(row_result)else:result = 0breakfor row in ws.iter_rows():for cell in row:if str(str(cell.value).replace(' ', '')).find(date_column) != -1:column_result = cell.column#  print(column_result)break# print(column_result)if row_result == 0 or column_result == 0:result = 0else:if ws.cell(row=row_result, column=column_result).value != None:# print(column_result)result = ws.cell(row=row_result, column=column_result).value# print(result)return resultdef getdate_lastyear(date_row, date_column):# print(date_row)# print(date_column)for row in ws.iter_rows():for cell in row:if str(str(cell.value).replace(' ', '')).find(date_row) != -1:row_result = cell.row# print(row_result)else:result = 0breakfor row in ws.iter_rows():for cell in row:if str(str(cell.value).replace(' ', '')).find(date_column) != -1:column_result = cell.column + 1#  print(column_result)break# print(column_result)if row_result == 0 or column_result == 0:result = 0else:if ws.cell(row=row_result, column=column_result).value != None:# print(column_result)result = ws.cell(row=row_result, column=column_result).value# print(result)return resultdef getspeed(date_row, date_column):# print(date_row)# print(date_column)for row in ws.iter_rows():for cell in row:if str(str(cell.value).replace(' ', '')).find(date_row) != -1:row_result = cell.row# print(row_result)else:result = 0breakfor row in ws.iter_rows():for cell in row:if str(str(cell.value).replace(' ', '')).find(date_column) != -1:column_result = cell.column + 2#  print(column_result)break# print(column_result)if row_result == 0 or column_result == 0:result = 0else:if ws.cell(row=row_result, column=column_result).value != None:# print(column_result)result = ws.cell(row=row_result, column=column_result).value# print(result)return resultif __name__ == '__main__':print("企业数和企业亏损情况")print(round(getdate('总计', '企业数'), 1));print('资产情况')print(round(getdate('总计', '资产总计'), 1));print(round(getspeed('总计', '资产总计'), 1));print(round(getdate('一、批发业', '资产总计'), 1));print(round(getspeed('一、批发业', '资产总计'), 1));print(round(getdate('二、零售业', '资产总计'), 1));print(round(getspeed('二、零售业', '资产总计'), 1));print(round(getdate('三、住宿业', '资产总计'), 1));print(round(getspeed('三、住宿业', '资产总计'), 1));print(round(getdate('四、餐饮业', '资产总计'), 1));print(round(getspeed('四、餐饮业', '资产总计'), 1));print('负债情况')print(round(getdate('总计', '负债合计'), 1));print(round(getspeed('总计', '负债合计'), 1));print(round(getdate('一、批发业', '负债合计'), 1));print(round(getspeed('一、批发业', '负债合计'), 1));print(round(getdate('二、零售业', '负债合计'), 1));print(round(getspeed('二、零售业', '负债合计'), 1));print(round(getdate('三、住宿业', '负债合计'), 1));print(round(getspeed('三、住宿业', '负债合计'), 1));print(round(getdate('四、餐饮业', '负债合计'), 1));print(round(getspeed('四、餐饮业', '负债合计'), 1));print('营业收入')print(round(getdate('总计', '营业收入'), 1));print(round(getspeed('总计', '营业收入'), 1));print(round(getdate('一、批发业', '营业收入'), 1));print(round(getspeed('一、批发业', '营业收入'), 1));print(round(getdate('二、零售业', '营业收入'), 1));print(round(getspeed('二、零售业', '营业收入'), 1));print(round(getdate('三、住宿业', '营业收入'), 1));print(round(getspeed('三、住宿业', '营业收入'), 1));print(round(getdate('四、餐饮业', '营业收入'), 1));print(round(getspeed('四、餐饮业', '营业收入'), 1));print('营业成本')print(round(getdate('总计', '营业成本'), 1));print(round(getspeed('总计', '营业成本'), 1));print(round(getdate('一、批发业', '营业成本'), 1));print(round(getspeed('一、批发业', '营业成本'), 1));print(round(getdate('二、零售业', '营业成本'), 1));print(round(getspeed('二、零售业', '营业成本'), 1));print(round(getdate('三、住宿业', '营业成本'), 1));print(round(getspeed('三、住宿业', '营业成本'), 1));print(round(getdate('四、餐饮业', '营业成本'), 1));print(round(getspeed('四、餐饮业', '营业成本'), 1));print('营业税金')print(round(getdate('总计', '税金及附加'), 1));print(round(getspeed('总计', '税金及附加'), 1));print(round(getdate('一、批发业', '税金及附加'), 1));print(round(getspeed('一、批发业', '税金及附加'), 1));print(round(getdate('二、零售业', '税金及附加'), 1));print(round(getspeed('二、零售业', '税金及附加'), 1));print(round(getdate('三、住宿业', '税金及附加'), 1));print(round(getspeed('三、住宿业', '税金及附加'), 1));print(round(getdate('四、餐饮业', '税金及附加'), 1));print(round(getspeed('四、餐饮业', '税金及附加'), 1));print('四项费用')print(round(getdate('总计', '销售费用') + getdate('总计', '管理费用') + getdate('总计', '研发费用') + getdate('总计', '财务费用'), 1));print(round(((getdate('总计', '销售费用') + getdate('总计', '管理费用') + getdate('总计', '研发费用') + getdate('总计', '财务费用')) / (getdate_lastyear('总计', '销售费用') + getdate_lastyear('总计', '管理费用') + getdate_lastyear('总计','研发费用') + getdate_lastyear('总计', '财务费用')) - 1) * 100, 1))print(round(getdate('一、批发业', '销售费用') + getdate('一、批发业', '管理费用') + getdate('一、批发业', '研发费用') + getdate('一、批发业', '财务费用'),1));print(round(((getdate('一、批发业', '销售费用') + getdate('一、批发业', '管理费用') + getdate('一、批发业', '研发费用') + getdate('一、批发业','财务费用')) / (getdate_lastyear('一、批发业', '销售费用') + getdate_lastyear('一、批发业', '管理费用') + getdate_lastyear('一、批发业', '研发费用') + getdate_lastyear('一、批发业', '财务费用')) - 1) * 100, 1))print(round(getdate('二、零售业', '销售费用') + getdate('二、零售业', '管理费用') + getdate('二、零售业', '研发费用') + getdate('二、零售业', '财务费用'),1));print(round(((getdate('二、零售业', '销售费用') + getdate('二、零售业', '管理费用') + getdate('二、零售业', '研发费用') + getdate('二、零售业','财务费用')) / (getdate_lastyear('二、零售业', '销售费用') + getdate_lastyear('二、零售业', '管理费用') + getdate_lastyear('二、零售业', '研发费用') + getdate_lastyear('二、零售业', '财务费用')) - 1) * 100, 1))print(round(getdate('三、住宿业', '销售费用') + getdate('三、住宿业', '管理费用') + getdate('三、住宿业', '研发费用') + getdate('三、住宿业', '财务费用'),1));print(round(((getdate('三、住宿业', '销售费用') + getdate('三、住宿业', '管理费用') + getdate('三、住宿业', '研发费用') + getdate('三、住宿业','财务费用')) / (getdate_lastyear('三、住宿业', '销售费用') + getdate_lastyear('三、住宿业', '管理费用') + getdate_lastyear('三、住宿业', '研发费用') + getdate_lastyear('三、住宿业', '财务费用')) - 1) * 100, 1))print(round(getdate('四、餐饮业', '销售费用') + getdate('四、餐饮业', '管理费用') + getdate('四、餐饮业', '研发费用') + getdate('四、餐饮业', '财务费用'),1));print(round(((getdate('四、餐饮业', '销售费用') + getdate('四、餐饮业', '管理费用') + getdate('四、餐饮业', '研发费用') + getdate('四、餐饮业','财务费用')) / (getdate_lastyear('四、餐饮业', '销售费用') + getdate_lastyear('四、餐饮业', '管理费用') + getdate_lastyear('四、餐饮业', '研发费用') + getdate_lastyear('四、餐饮业', '财务费用')) - 1) * 100, 1))print('营业利润')print(round(getdate('总计', '营业利润'), 1));print(round(getspeed('总计', '营业利润'), 1));print(round(getdate('一、批发业', '营业利润'), 1));print(round(getspeed('一、批发业', '营业利润'), 1));print(round(getdate('二、零售业', '营业利润'), 1));print(round(getspeed('二、零售业', '营业利润'), 1));print(round(getdate('三、住宿业', '营业利润'), 1));print(round(getspeed('三、住宿业', '营业利润'), 1));print(round(getdate('四、餐饮业', '营业利润'), 1));print(round(getspeed('四、餐饮业', '营业利润'), 1));print('应交增值税')print(round(getdate('总计', '应交增值税'), 1));print(round(getspeed('总计', '应交增值税'), 1));print(round(getdate('一、批发业', '应交增值税'), 1));print(round(getspeed('一、批发业', '应交增值税'), 1));print(round(getdate('二、零售业', '应交增值税'), 1));print(round(getspeed('二、零售业', '应交增值税'), 1));print(round(getdate('三、住宿业', '应交增值税'), 1));print(round(getspeed('三、住宿业', '应交增值税'), 1));print(round(getdate('四、餐饮业', '应交增值税'), 1));print(round(getspeed('四、餐饮业', '应交增值税'), 1));print('资产负债率')if (getdate('总计', '负债合计') > 0 and getdate('总计', '资产总计') > 0):print(round(getdate('总计', '负债合计') / getdate('总计', '资产总计') * 100, 1));else:print("error")if (getdate('总计', '资产总计') > 0 and getdate_lastyear('总计', '资产总计') > 0 and getdate('总计','负债合计') > 0 and getdate_lastyear('总计', '负债合计') > 0):print(round((getdate('总计', '负债合计') / getdate('总计', '资产总计') - getdate_lastyear('总计', '负债合计') / getdate_lastyear('总计', '资产总计')) * 100, 1));else:print("error")if (getdate('一、批发业', '资产总计') > 0 and getdate('一、批发业', '负债合计') > 0):print(round(getdate('一、批发业', '负债合计') / getdate('一、批发业', '资产总计') * 100, 1));else:print("error")if (getdate('一、批发业', '资产总计') > 0 and getdate_lastyear('一、批发业', '资产总计') > 0 and getdate('一、批发业','负债合计') > 0 and getdate_lastyear('一、批发业', '负债合计') > 0):print(round((getdate('一、批发业', '负债合计') / getdate('一、批发业', '资产总计') - getdate_lastyear('一、批发业','负债合计') / getdate_lastyear('一、批发业', '资产总计')) * 100, 1));else:print("error")if (getdate('二、零售业', '资产总计') > 0 and getdate('二、零售业', '负债合计') > 0):print(round(getdate('二、零售业', '负债合计') / getdate('二、零售业', '资产总计') * 100, 1));else:print("error")if (getdate('二、零售业', '资产总计') > 0 and getdate_lastyear('二、零售业', '资产总计') > 0 and getdate('二、零售业','负债合计') > 0 and getdate_lastyear('二、零售业', '负债合计') > 0):print(round((getdate('二、零售业', '负债合计') / getdate('二、零售业', '资产总计') - getdate_lastyear('二、零售业','负债合计') / getdate_lastyear('二、零售业', '资产总计')) * 100, 1));else:print("error")if (getdate('三、住宿业', '资产总计') > 0 and getdate('三、住宿业', '负债合计') > 0):print(round(getdate('三、住宿业', '负债合计') / getdate('三、住宿业', '资产总计') * 100, 1));else:print("error")if (getdate('三、住宿业', '资产总计') > 0 and getdate_lastyear('三、住宿业', '资产总计') > 0 and getdate('三、住宿业','负债合计') > 0 and getdate_lastyear('三、住宿业', '负债合计') > 0):print(round((getdate('三、住宿业', '负债合计') / getdate('三、住宿业', '资产总计') - getdate_lastyear('三、住宿业','负债合计') / getdate_lastyear('三、住宿业', '资产总计')) * 100, 1));else:print("error")if (getdate('三、住宿业', '资产总计') > 0 and getdate('四、餐饮业', '负债合计') > 0):print(round(getdate('四、餐饮业', '负债合计') / getdate('三、住宿业', '资产总计') * 100, 1));else:print("error")if (getdate('四、餐饮业', '资产总计') > 0 and getdate_lastyear('四、餐饮业', '资产总计') > 0 and getdate('四、餐饮业','负债合计') > 0 and getdate_lastyear('四、餐饮业', '负债合计') > 0):print(round((getdate('四、餐饮业', '负债合计') / getdate('四、餐饮业', '资产总计') - getdate_lastyear('四、餐饮业','负债合计') / getdate_lastyear('四、餐饮业', '资产总计')) * 100, 1));else:print("error")print('毛利率')if (getdate('总计', '营业收入') > 0 and getdate('总计', '营业成本') > 0):print(round((1 - getdate('总计', '营业成本') / getdate('总计', '营业收入')) * 100, 1));else:print("error")if (getdate_lastyear('总计', '营业收入') > 0 and getdate('总计', '营业收入') > 0 and getdate_lastyear('总计','营业成本') > 0 and getdate('总计', '营业成本') > 0):print(round((getdate_lastyear('总计', '营业成本') / getdate_lastyear('总计', '营业收入') - getdate('总计', '营业成本') / getdate('总计', '营业收入')) * 100, 1));else:print("error")if (getdate('一、批发业', '营业收入') > 0 and getdate('一、批发业', '营业成本') > 0):print(round((1 - getdate('一、批发业', '营业成本') / getdate('一、批发业', '营业收入')) * 100, 1));else:print("error")if (getdate_lastyear('一、批发业', '营业收入') > 0 and getdate('一、批发业', '营业收入') > 0 and getdate_lastyear('一、批发业','营业成本') > 0 and getdate('一、批发业', '营业成本') > 0):print(round((getdate_lastyear('一、批发业', '营业成本') / getdate_lastyear('一、批发业', '营业收入') - getdate('一、批发业','营业成本') / getdate('一、批发业', '营业收入')) * 100, 1));else:print("error")if (getdate('二、零售业', '营业收入') > 0 and getdate('二、零售业', '营业成本') > 0):print(round((1 - getdate('二、零售业', '营业成本') / getdate('二、零售业', '营业收入')) * 100, 1));else:print("error")if (getdate_lastyear('二、零售业', '营业收入') > 0 and getdate('二、零售业', '营业收入') > 0 and getdate_lastyear('二、零售业','营业成本') > 0 and getdate('二、零售业', '营业成本') > 0):print(round((getdate_lastyear('二、零售业', '营业成本') / getdate_lastyear('二、零售业', '营业收入') - getdate('二、零售业','营业成本') / getdate('二、零售业', '营业收入')) * 100, 1));else:print("error")if (getdate('三、住宿业', '营业收入') > 0 and getdate('三、住宿业', '营业收入') > 0):print(round((1 - getdate('三、住宿业', '营业成本') / getdate('三、住宿业', '营业收入')) * 100, 1));else:print("error")if (getdate_lastyear('三、住宿业', '营业收入') > 0 and getdate('三、住宿业', '营业收入') > 0 and getdate_lastyear('三、住宿业','营业成本') > 0 and getdate('三、住宿业', '营业成本') > 0):print(round((getdate_lastyear('三、住宿业', '营业成本') / getdate_lastyear('三、住宿业', '营业收入') - getdate('三、住宿业','营业成本') / getdate('三、住宿业', '营业收入')) * 100, 1));else:print("error")if (getdate('四、餐饮业', '营业收入') > 0 and getdate('四、餐饮业', '营业成本') > 0):print(round((1 - getdate('四、餐饮业', '营业成本') / getdate('四、餐饮业', '营业收入')) * 100, 1));else:print("error")if (getdate_lastyear('四、餐饮业', '营业收入') > 0 and getdate('四、餐饮业', '营业收入') > 0 and getdate_lastyear('四、餐饮业','营业成本') > 0 and getdate('四、餐饮业', '营业成本') > 0):print(round((getdate_lastyear('四、餐饮业', '营业成本') / getdate_lastyear('四、餐饮业', '营业收入') - getdate('四、餐饮业','营业成本') / getdate('四、餐饮业', '营业收入')) * 100, 1));else:print("error")print('营业收入户均值')if (getdate('一、批发业', '企业数') > 0):print(round(getdate('一、批发业', '营业收入') / getdate('一、批发业', '企业数') * 10000, 1));else:print("error")if (getdate('二、零售业', '企业数') > 0):print(round(getdate('二、零售业', '营业收入') / getdate('二、零售业', '企业数') * 10000, 1));else:print("error")if (getdate('三、住宿业', '企业数') > 0):print(round(getdate('三、住宿业', '营业收入') / getdate('三、住宿业', '企业数') * 10000, 1));else:print("error")if (getdate('四、餐饮业', '企业数') > 0):print(round(getdate('四、餐饮业', '营业收入') / getdate('四、餐饮业', '企业数') * 10000, 1));else:print("error")print('营业收入人均值')if (getdate('一、批发业', '从业人员平均人数(人)') > 0):print(round(getdate('一、批发业', '营业收入') / getdate('一、批发业', '从业人员平均人数(人)') * 10000, 1));else:print("error")if (getdate('二、零售业', '从业人员平均人数(人)') > 0):print(round(getdate('二、零售业', '营业收入') / getdate('二、零售业', '从业人员平均人数(人)') * 10000, 1));else:print("error")if (getdate('三、住宿业', '从业人员平均人数(人)') > 0):print(round(getdate('三、住宿业', '营业收入') / getdate('三、住宿业', '从业人员平均人数(人)') * 10000, 1));else:print("error")if (getdate('四、餐饮业', '从业人员平均人数(人)') > 0):print(round(getdate('四、餐饮业', '营业收入') / getdate('四、餐饮业', '从业人员平均人数(人)') * 10000, 1));else:print("error")print('销售费用')print(round(getdate('总计', '销售费用'), 1));print(round(((getdate('总计', '销售费用')) / (getdate_lastyear('总计', '销售费用')) - 1) * 100, 1))print(round(getdate('一、批发业', '销售费用'), 1));print(round(((getdate('一、批发业', '销售费用')) / (getdate_lastyear('一、批发业', '销售费用')) - 1) * 100, 1))print(round(getdate('二、零售业', '销售费用'), 1));print(round(((getdate('二、零售业', '销售费用')) / (getdate_lastyear('二、零售业', '销售费用')) - 1) * 100, 1))print(round(getdate('三、住宿业', '销售费用'), 1));print(round(((getdate('三、住宿业', '销售费用')) / (getdate_lastyear('三、住宿业', '销售费用')) - 1) * 100, 1))print(round(getdate('四、餐饮业', '销售费用'), 1));print(round(((getdate('四、餐饮业', '销售费用')) / (getdate_lastyear('四、餐饮业', '销售费用')) - 1) * 100, 1))print('管理费用')print(round(getdate('总计', '管理费用'), 1));print(round(((getdate('总计', '管理费用')) / (getdate_lastyear('总计', '管理费用')) - 1) * 100, 1))print(round(getdate('一、批发业', '管理费用'), 1));print(round(((getdate('一、批发业', '管理费用')) / (getdate_lastyear('一、批发业', '管理费用')) - 1) * 100, 1))print(round(getdate('二、零售业', '管理费用'), 1));print(round(((getdate('二、零售业', '管理费用')) / (getdate_lastyear('二、零售业', '管理费用')) - 1) * 100, 1))print(round(getdate('三、住宿业', '管理费用'), 1));print(round(((getdate('三、住宿业', '管理费用')) / (getdate_lastyear('三、住宿业', '管理费用')) - 1) * 100, 1))print(round(getdate('四、餐饮业', '管理费用'), 1));print(round(((getdate('四、餐饮业', '管理费用')) / (getdate_lastyear('四、餐饮业', '管理费用')) - 1) * 100, 1))print('研发费用')print(round(getdate('总计', '研发费用'), 1));print(round(((getdate('总计', '研发费用')) / (getdate_lastyear('总计', '研发费用')) - 1) * 100, 1))print(round(getdate('一、批发业', '研发费用'), 1));print(round(((getdate('一、批发业', '研发费用')) / (getdate_lastyear('一、批发业', '研发费用')) - 1) * 100, 1))print(round(getdate('二、零售业', '研发费用'), 1));if (getdate_lastyear('二、零售业', '研发费用') > 0):print(round(((getdate('二、零售业', '研发费用')) / (getdate_lastyear('二、零售业', '研发费用')) - 1) * 100, 1));else:print("error")print(round(getdate('三、住宿业', '研发费用'), 1));if (getdate_lastyear('三、住宿业', '研发费用') != 0):print(round(((getdate('三、住宿业', '研发费用')) / (getdate_lastyear('三、住宿业', '研发费用')) - 1) * 100, 1))else:print("error")print(round(getdate('四、餐饮业', '研发费用'), 1));if (getdate_lastyear('四、餐饮业', '研发费用') != 0):print(round(((getdate('四、餐饮业', '研发费用')) / (getdate_lastyear('四、餐饮业', '研发费用')) - 1) * 100, 1))else:print("error")print('财务费用')print(round(getdate('总计', '财务费用'), 1));print(round(((getdate('总计', '财务费用')) / (getdate_lastyear('总计', '财务费用')) - 1) * 100, 1))print(round(getdate('一、批发业', '财务费用'), 1));print(round(((getdate('一、批发业', '财务费用')) / (getdate_lastyear('一、批发业', '财务费用')) - 1) * 100, 1))print(round(getdate('二、零售业', '财务费用'), 1));print(round(((getdate('二、零售业', '财务费用')) / (getdate_lastyear('二、零售业', '财务费用')) - 1) * 100, 1))print(round(getdate('三、住宿业', '财务费用'), 1));print(round(((getdate('三、住宿业', '财务费用')) / (getdate_lastyear('三、住宿业', '财务费用')) - 1) * 100, 1))print(round(getdate('四、餐饮业', '财务费用'), 1));print(round(((getdate('四、餐饮业', '财务费用')) / (getdate_lastyear('四、餐饮业', '财务费用')) - 1) * 100, 1))

自定义汇总表,财务季报数据评估相关推荐

  1. 财务季报评估报表数据提取+自动撰写3.0

    #修改了应交增值税 同比下降单位错误的问题 from docx import Document from docx.shared import Inchesdocument = Document()f ...

  2. R语言编写自定义函数计算分类模型评估指标:准确度、特异度、敏感度、PPV、NPV、数据数据为模型预测后的混淆矩阵、比较多个分类模型分类性能(逻辑回归、决策树、随机森林、支持向量机)

    R语言编写自定义函数计算分类模型评估指标:准确度.特异度.敏感度.PPV.NPV.数据数据为模型预测后的混淆矩阵.比较多个分类模型分类性能(逻辑回归.决策树.随机森林.支持向量机) 目录

  3. QIIME 2教程. 14数据评估和质控q2-quality-control(2021.2)

    数据评估和质控q2-quality-control Evaluating and controlling data quality with q2-quality-control https://do ...

  4. QIIME 2用户文档. 14数据评估和质控Evaluating and controlling(2019.7)

    前情提要 NBT:QIIME 2可重复.交互和扩展的微生物组数据分析平台 1简介和安装Introduction&Install 2插件工作流程概述Workflow 3老司机上路指南Experi ...

  5. QIIME 2教程. 14数据评估和质控q2-quality-control(2020.11)

    文章目录 数据评估和质控`q2-quality-control` 下载数据 基于对齐过滤序列 质量评估已知组成的样品 评估序列质量 译者简介 Reference 猜你喜欢 写在后面 数据评估和质控q2 ...

  6. QIIME 2用户文档. 13数据评估和质控Evaluating and controlling(2018.11)

    文章目录 前情提要 数据评估和质控`q2-quality-control` 下载数据 基于比对过滤序列 质量评估已知组成的样品 评估序列质量 Reference 译者简介 猜你喜欢 写在后面 前情提要 ...

  7. R语言ggplot2可视化可视化聚类图、使用geom_encircle函数绘制多边形标定属于同一聚类簇的数据点、并自定义每个聚类簇数据点的颜色、多边形框的颜色(Cluster Plot)、主副标题题注

    R语言ggplot2可视化可视化聚类图.使用geom_encircle函数绘制多边形标定属于同一聚类簇的数据点.并自定义每个聚类簇数据点的颜色.多边形框的颜色(Cluster Plot).主副标题题注 ...

  8. python中使用squarify包可视化treemap图:treemap将分层数据显示为一组嵌套矩形,每一组都用一个矩形表示,该矩形的面积与其值成正比、自定义设置每一个数据格的颜色

    python中使用squarify包可视化treemap图:treemap将分层数据显示为一组嵌套矩形,每一组都用一个矩形表示,该矩形的面积与其值成正比.自定义设置每一个数据格的颜色 目录

  9. pandas编写自定义函数、使用apply函数应用自定义函数基于Series数据生成新的dataframe

    pandas编写自定义函数.使用apply函数应用自定义函数基于Series数据生成新的dataframe 目录 pandas编写自定义函数.使用apply函

最新文章

  1. 前端构建工具gulp之基本介绍
  2. 十一在家都逛哪些技术网站?(程序员必备58个网站汇总)
  3. 深度学习背后的数学_深度学习背后的简单数学
  4. python django 快速实现注册,登录,注销
  5. 使用ViewSwitcher模拟手机屏幕应用分屏和切换
  6. 内部曝料——博文年会之《武林外传》
  7. ubuntu搭建nfs网络文件系统
  8. wps怎么关闭修改痕迹_WPS文字如何保留修改痕迹?WPS文字保留修改痕迹教程
  9. whl 文件怎么安装
  10. 不能说のsecret 5
  11. CVPR 2021 UniT: Multimodal Multitask Learning with a Unifified Transformer
  12. 手机编写java的软件_手机上可以用来学习编程的软件有哪些?
  13. Android逆向之分析某锁机恶意软件
  14. 1314520用计算机怎么算,表白公式数学公式抖音 抖音1314520怎么计算,快用计算器表白?...
  15. CSS3窗外闪电下雨动画js特效
  16. 【游戏面包屑】简单的导航栏设计
  17. 孩子数学成绩不好怎么办_小孩子数学差怎么办
  18. Android音频子系统(十一)------耳机返听(耳返)原理实现
  19. java植物大战僵尸_植物大战僵尸java游戏
  20. 化学计量学(2)—线性回归、逐步回归原理与实现流程

热门文章

  1. 3、suspend函数的使用(组合)
  2. ICT的圣杯(三):产业融合的技术乐章
  3. layui上传图片列表展示_ThinkPHP5+Layui实现图片上传加预览功能
  4. 【Linux学习之驱动:驱动程序编译、执行】
  5. 区间和问题——九度 1554
  6. biee mysql_【Oracle BIEE学习笔记一】Oracle BIEE简介 | 学步园
  7. C++ 实验二 NO.2 身高预测 设faHeight为其父身高,moHeight为其母身高,身高预测公式为:男性成人时身高=(faHeight + moHeight)×0.54cm;女性成人时身高
  8. 爬虫之Splash基础篇
  9. css自定义cursor(放大镜nbsp;放小镜)
  10. python手机销售系统结论于心得_手机销售人员心得体会