上一页 1 2 3 4 5 6 7 ··· 11 下一页

2022年6月20日

摘要: 一、什么是定义问题 1.把一个具体的事件转化为要解决的问题。 2.用清晰的描述和具体的数据替代口头的表达。 3.用专业的判断,定义问题的发生场景,问题的类型。 4.初步预判解决问题的方向,设定评价标准,管理期望值。 二、定义数据分析的问题 1.清晰描述问题 2.划分问题边界(哪些是数据分析能解决的问 阅读全文

posted @ 2022-06-20 10:39 飞行的蟒蛇 阅读(291) 评论(0) 推荐(0)

2022年6月16日

摘要: 1. 什么是业务 1.生产销售运营的各个流程细节。 2.可以细分到部门个人的岗位。 2.理解业务的起步成诗法 1.业务模式 2.产品 3.渠道 4.用户 5.运营 6.组织架构 7.KPI 阅读全文

posted @ 2022-06-16 11:16 飞行的蟒蛇 阅读(80) 评论(0) 推荐(0)

2021年9月30日

摘要: SELECT TOP 1000 ST.text AS '执行的SQL语句' , QS.execution_count AS '执行次数' , QS.total_elapsed_time AS '耗时' , QS.total_logical_reads AS '逻辑读取次数' , QS.total_l 阅读全文

posted @ 2021-09-30 13:45 飞行的蟒蛇 阅读(63) 评论(0) 推荐(0)

2021年9月29日

摘要: setTimeout(function() { //选择时背景颜色变量 var oldColor = "rgb(255, 255, 255)"; var newColor = "rgb(255, 0, 0)"; var index=0 $("[widgetname='REPORT1']").find 阅读全文

posted @ 2021-09-29 16:07 飞行的蟒蛇 阅读(1292) 评论(0) 推荐(0)

2021年5月26日

摘要: sql sever 1.取昨日:CONVERT(varchar(10),GETDATE()-1,120) 2.日期加减:DATEADD(MONTH,12,CONVERT(datetime,'202005'+'01',101)) ORACLE 1.取昨日:to_char(sysdate-1,'yyy- 阅读全文

posted @ 2021-05-26 09:18 飞行的蟒蛇 阅读(105) 评论(0) 推荐(0)

2020年12月15日

该文被密码保护。 阅读全文

posted @ 2020-12-15 10:14 飞行的蟒蛇 阅读(0) 评论(0) 推荐(0)

2020年7月8日

摘要: 1.鼠标移动图片放大 $("td[id^=A] img").mouseover(function(e){var col=Number($(this).attr("col"))+1; //获取鼠标当前所在单元格的col var row=$(this).attr("row"); //获取鼠标当前所在单元 阅读全文

posted @ 2020-07-08 11:04 飞行的蟒蛇 阅读(1065) 评论(0) 推荐(0)

2020年6月22日

摘要: def replace_into1(table_name, table_data): table_data = Hr_Kpi.reset_index(drop=True) table_data=table_data.where(table_data.notnull(),'') columns = [ 阅读全文

posted @ 2020-06-22 14:09 飞行的蟒蛇 阅读(1777) 评论(0) 推荐(0)

2020年5月12日

摘要: 1. SELECT t1.now_year_order AS 年份, t1.now_month_order 月份, order_time,CASE WHEN now_month_order_num IS NULL OR now_month_order_num = 0 THEN 0 ELSE now_ 阅读全文

posted @ 2020-05-12 15:13 飞行的蟒蛇 阅读(132) 评论(0) 推荐(0)

2019年12月6日

摘要: import pandas as pdimport numpy as npimport osdef work_attendance(file_path,out_path): data = pd.read_excel(file_path, sheet_name='2020.1.2') # 填文件路径 阅读全文

posted @ 2019-12-06 13:27 飞行的蟒蛇 阅读(160) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 7 ··· 11 下一页