99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機(jī)數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進(jìn)行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個(gè)參數(shù)驗(yàn)證碼對(duì)象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個(gè)配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺(tái)檢測(cè)極驗(yàn)服務(wù)器是否宕機(jī) new_captcha: data.new_captcha, // 用于宕機(jī)時(shí)表示是新驗(yàn)證碼的宕機(jī) product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請(qǐng)參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計(jì)時(shí)完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請(qǐng)輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請(qǐng)輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }

D.Chu

python 保存模型的兩種方法

(1)使用joblibfrom sklearn.externals import joblib保存模型:joblib.dump(reg,'regtree.pkl')讀取模型:clf = joblib('regtree.pkl')(2)使用pickleimport pickle保存模型:with open('reg.pkl','wb') as f: pi

D.Chu

2020-08-11

35.2534 4 2
  • 關(guān)注作者
  • 收藏

python 插入列方法

(1)新增一列數(shù)據(jù)ps: df['性別'] = ['男','男','女'](2)在指定位置插入列:insert在指定位置前插入ps: df.insert(6,'性別',['男','男','女'])

D.Chu

2020-07-25

41.2557 3 1
  • 關(guān)注作者
  • 收藏

python 類中如何增加新的方法

(1)在創(chuàng)建類的時(shí)候添加;(2)也可在創(chuàng)建類之后添加:如:新添加一個(gè)方法 def (self): return '{}正在睡覺中'.format(self.name) CDA學(xué)員.sleep = sleep #把函數(shù)傳給類,類就有了一個(gè)新的方法

D.Chu

2020-07-19

104.1463 2 2
  • 關(guān)注作者
  • 收藏

python 基礎(chǔ)

模塊(1)導(dǎo)入模塊:import math一次導(dǎo)入多個(gè)模塊:import math,random,time調(diào)用模塊中的函數(shù),如:math.sqrt(x)(2)從模塊中導(dǎo)入所有函數(shù)如:from math import *或者從模塊中導(dǎo)入需要的函數(shù)如:from math import sqrt,cos,sin調(diào)用函數(shù)時(shí)可直接寫函數(shù)名,不用寫包名如:sqrt(x)

D.Chu

2020-07-18

104.2152 3 3
  • 關(guān)注作者
  • 收藏

最小二乘法excel實(shí)現(xiàn)的五種方法

(1)直接求出參數(shù)β0、β1β0=INTERCEPT(y,x)β1=SLOPE(y,x)(2)散點(diǎn)圖上直接顯示先畫出散點(diǎn)圖,先點(diǎn)上右鍵,選擇顯示公式(3)數(shù)據(jù)選項(xiàng)卡下,數(shù)據(jù)分析下,選擇回歸(4)數(shù)據(jù)選項(xiàng)卡下,規(guī)劃求解(5)運(yùn)用矩陣求出參數(shù)ββ=(X’X)-1X’Y

D.Chu

2020-07-12

34.9827 3 3
  • 關(guān)注作者
  • 收藏

統(tǒng)計(jì)學(xué)

標(biāo)準(zhǔn)差分類(1)標(biāo)準(zhǔn)誤差:standard error(SE) 同一主體預(yù)測(cè)、估計(jì)時(shí)產(chǎn)生的差(2)標(biāo)準(zhǔn)離差:standard deviation(SD)不同主體之間距離產(chǎn)生差

D.Chu

2020-07-10

18.4559 4 3
  • 關(guān)注作者
  • 收藏

Power BI總結(jié)

一、Power Query數(shù)據(jù)處理1、查詢編輯器上網(wǎng)使用2、M函數(shù)基礎(chǔ)(1)自定義函數(shù)例:(parameter1 as number, parameter2 as number) =>letFinal = (parameter1 + parameter2) / 2inFinal(2)if函數(shù)例:if 2 > 1 then2 + 2else if 2 = 1 then2 + 1else1 + 13、

D.Chu

2020-07-05

34.6089 9 4
  • 關(guān)注作者
  • 收藏

select語(yǔ)句執(zhí)行順序

MySQLselect語(yǔ)句執(zhí)行順序FROM->WHERE->GROUP BY->HAVING->SELECT->ORDER BY->LIMIT

D.Chu

2020-07-04

34.9462 4 3
  • 關(guān)注作者
  • 收藏

Power BI創(chuàng)建一個(gè)時(shí)間列表

可以用List.Dates創(chuàng)建一個(gè)時(shí)間列

D.Chu

2020-06-28

24.6545 1 2
  • 關(guān)注作者
  • 收藏

power bi 中all函數(shù)與allselected的區(qū)別

all函數(shù):同時(shí)忽略指定字段或表作為匯總維度以及篩選維度的篩選作用; allselected函數(shù):只忽略指定字段或表作為匯總維度的篩選作用,不忽略作為篩選維度的篩選作用。

D.Chu

2020-06-26

53.5609 3 2
  • 關(guān)注作者
  • 收藏

calculate與filter函數(shù)

calculate與filter函數(shù) filter(表,篩選條件) calculate(計(jì)算規(guī)則,條件1,條件2...) ps: CALCULATE(sum('商機(jī)記錄'[商機(jī)金額(M)]),filter('商機(jī)記錄',[winodds]="H"),filter('商機(jī)記錄',[Risk]="無"))

D.Chu

2020-06-25

39.0867 3 3
  • 關(guān)注作者
  • 收藏

PowerBI自定義函數(shù)

自定義函數(shù): (參數(shù)1,參數(shù)2,參數(shù)3...) => 函數(shù)運(yùn)算表達(dá)式 ps: (parameter1 as number, parameter2 as number) => let Final = (parameter1 + parameter2) / 2 in Final

D.Chu

2020-06-22

25.6861 4 3
  • 關(guān)注作者
  • 收藏

MySQL數(shù)據(jù)查詢語(yǔ)言DQL

數(shù)據(jù)查詢語(yǔ)言DQL 1、單表查詢 (1)全表查詢:select * from 表名; (2)查詢指定列:select 字段1[,字段2,…] from 表名; (3)查詢不重復(fù)的數(shù)據(jù):select distinct 字段名 from 表名; (4)設(shè)置別名:select 字段名 as 列別名 from 原表名 [as ]表別名; (5)條件查詢:se

D.Chu

2020-06-21

28.6589 2 2
  • 關(guān)注作者
  • 收藏

mysql 一維轉(zhuǎn)二維的方法

mysql 一維轉(zhuǎn)二維的兩種方法-- 先找出顯示的字段select s_id, if(c_id='01',score,0), if(c_id='02',score,0), if(c_id='03',score,0)from sc;-- 再分組 也可以max ifnullselect s_id, sum(if(c_id='01',score,0)) as '01', sum(if(c_i

D.Chu

2020-06-20

27.2663 2 2
  • 關(guān)注作者
  • 收藏

查詢本周的日期時(shí)間

selectdate_sub(curdate(),interval date_format(curdate(),'%w') day), date_add(curdate(),interval 6-date_format(curdate(),'%w') day);

D.Chu

2020-06-19

22.3975 1 2
  • 關(guān)注作者
  • 收藏

開窗函數(shù)

mysql開窗函數(shù)的常用函數(shù)有哪些

D.Chu

2020-06-19

21.4086 1 5
  • 關(guān)注作者
  • 收藏

mysql開窗函數(shù)知識(shí)點(diǎn)

開窗函數(shù)作為條件引用時(shí),只能用子查詢

D.Chu

2020-06-18

14.1454 1 0
  • 關(guān)注作者
  • 收藏

mysql知識(shí)點(diǎn)

where子句中不能使用開窗函數(shù)

D.Chu

2020-06-18

14.1972 3 3
  • 關(guān)注作者
  • 收藏

MySQL語(yǔ)句

MySQL查詢的結(jié)構(gòu) select * from 表名; 查詢都能在這個(gè)結(jié)構(gòu)上實(shí)現(xiàn)

D.Chu

2020-06-17

24.8000 1 2
  • 關(guān)注作者
  • 收藏

EXCEL總結(jié)

EXCEL總結(jié) 一、高階函數(shù) 二、條件格式 三、數(shù)據(jù)透視表值的顯示方式 四、圖表的應(yīng)用 1、復(fù)合餅圖(細(xì)分占比) 2、子彈圖(完成情況) 3、堆積條形圖(對(duì)比) 4、衍生-達(dá)成率圖 5、漏斗圖(轉(zhuǎn)化率) 五、EXCEL工具應(yīng)用案例 1、項(xiàng)目排期表 2、員工考勤表 六、指標(biāo)應(yīng)用 1、同比(年) 2、環(huán)比(月) 3、轉(zhuǎn)化率(運(yùn)用漏斗圖) 4、考勤評(píng)估案例 5、活動(dòng)評(píng)估案例 七、業(yè)務(wù)問題 1、帕累托分析

D.Chu

2020-06-16

29.7615 3 6
  • 關(guān)注作者
  • 收藏