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

熱線電話:13121318867

登錄
首頁(yè)大數(shù)據(jù)時(shí)代怎么理解numpy的where()函數(shù)?
怎么理解numpy的where()函數(shù)?
2023-03-22
收藏

Numpy是Python中一個(gè)非常流行的科學(xué)計(jì)算庫(kù),其中包含了許多方便而強(qiáng)大的函數(shù)。其中,where()函數(shù)是非常有用的一個(gè)函數(shù),它可以幫助我們?cè)跀?shù)組中找到滿足特定條件的元素,并返回相應(yīng)的索引或值。在本文中,我們將深入探討numpy中where()函數(shù)的用法和使用技巧。

首先,讓我們來(lái)看一下where()函數(shù)的基本語(yǔ)法:

numpy.where(condition[, x, y])

其中,condition是一個(gè)條件表達(dá)式,它描述了我們要查找的元素的特征;x和y是可選參數(shù),它們分別表示在滿足條件和不滿足條件時(shí)要返回的值。如果沒(méi)有指定x和y,則where()函數(shù)將返回滿足條件的元素的索引

現(xiàn)在讓我們來(lái)看一些實(shí)際的例子,以更好地理解where()函數(shù)的用法。假設(shè)我們有一個(gè)包含10個(gè)隨機(jī)整數(shù)的numpy數(shù)組:

import numpy as np

arr = np.random.randint(0, 10, size=10)
print(arr)

輸出結(jié)果類似于:

[7 3 1 8 7 4 9 9 7 9]

現(xiàn)在,我們想找到所有大于5的元素在數(shù)組中的位置。我們可以使用where()函數(shù)來(lái)完成這個(gè)任務(wù):

indices = np.where(arr > 5)

print(indices)

輸出結(jié)果為:

(array([0, 3, 4, 6, 7, 8, 9], dtype=int64),)

可以看到,where()函數(shù)返回了一個(gè)元組,其中第一個(gè)元素是一個(gè)數(shù)組,它包含了滿足條件的元素在原始數(shù)組中的索引

除了返回索引之外,where()函數(shù)還可以返回滿足條件的元素本身。例如,以下代碼將返回?cái)?shù)組中所有大于5的元素:

values = arr[np.where(arr > 5)]

print(values)

輸出結(jié)果為:

[7 8 7 9 9 7 9]

可以看到,where()函數(shù)只是一個(gè)查找工具,它可以幫助我們找到數(shù)組中特定元素的位置或值,并將其提取出來(lái)。但是,它并不能直接修改數(shù)組本身。如果我們想要修改數(shù)組,則需要使用其他numpy函數(shù),例如np.where()函數(shù)。

np.where()函數(shù)的語(yǔ)法與where()函數(shù)非常相似,但是它允許我們?cè)跀?shù)組中根據(jù)條件選擇新的值。例如,以下代碼將在原始數(shù)組中將所有小于5的元素替換為0:

new_arr = np.where(arr < 5, 0, arr)

print(new_arr)

輸出結(jié)果為:

[7 0 0 8 7 0 9 9 7 9]

可以看到,np.where()函數(shù)將原始數(shù)組中小于5的元素替換為0,并將結(jié)果存儲(chǔ)在新數(shù)組new_arr中。

最后,讓我們來(lái)總結(jié)一下numpy中where()函數(shù)的用法和使用技巧:

  1. where()函數(shù)可以幫助我們?cè)跀?shù)組中找到滿足特定條件的元素,并返回相應(yīng)的索引或值。
  2. where()函數(shù)只是一個(gè)查找工具,它不會(huì)直接修改數(shù)組本身。如果我們想要修改數(shù)組,則需要使用其他numpy函數(shù),例如np.where()函數(shù)。
  3. where()函數(shù)的語(yǔ)法非常靈活,它可以在不同的情況下執(zhí)行不同的操作。通過(guò)熟練掌握where()函數(shù)的使用技巧,我們可以更加高效地處理和分析數(shù)據(jù)。

數(shù)據(jù)分析咨詢請(qǐng)掃描二維碼

若不方便掃碼,搜微信號(hào):CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } 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ù)說(shuō)明請(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); }