Tableau如何建立兩個集合,篩選交集的資料? by 儲蓄保險王 · 2023-07-27 Tableau介面: 檔案 => 更多: 基礎用法 銷售額點兩下,類別點兩下: 點擊類別左方的展開(+)圖示 可以生出子類別 欄列互換(Ctrl+W): 直條圖變成橫條圖: 利潤率拖到色彩: 建立兩個集合後,篩選交集 客戶名稱=>右鍵=>建立=>集合 利潤小於0的集合: 銷售額頂端20的集合: 兩個集合拉到篩選條件 客戶名稱拉到 列 相關文章Python: Pandas 與 NumPy 處理缺失值中位數計算的完整指南; pandas.Series.median( skipna=True ) ; median_np = numpy .nanmedian(arr)Python爬蟲:BeautifulSoup的 .find_all() 與 .find() 與 .select('標籤名[屬性名1="屬性值1"][屬性名2="屬性值2"]') ; from bs4 import BeautifulSoup ; Live Server(可以預覽HTML的VS Code套件)Python: 如何使用jieba做中文斷詞? jieba.cut(sentence, cut_all=False, HMM=True, use_paddle=False) #.cut() return generator 如果需要獲取具體結果,需要用 join() 或 list() 處理 #.lcut() 直接生成listPython: 如何使用selenium打開chrome瀏覽器連線Facebook,自動輸入帳密後登入?from selenium import webdriver ; driver = webdriver.Chrome() ; driver.get(url)Python爬蟲: Selenium 的 expected_conditions 與 例外狀況; from selenium.webdriver.support import expected_conditions as EC ; from selenium.common.exceptions import NoSuchElementException, TimeoutExceptionPython 正則表示法(Regular Expression) : re.Match 物件的 .group() .groups()方法 #捕獲組Python: 如何使用graphviz套件繪製流程圖? 如何讓左右兩個子圖同高度? graph_attr = {'newrank': 'true'} #g.attr(newrank='true')Python: 如何使用selenium自動開啟Chrome瀏覽器,輸入關鍵字後,按ENTER,搜尋圖片? 如何抓下所有大圖?Python爬蟲: selenium如何find_elements() ? 如何搭配portable Chrome? from selenium.webdriver.common.by import By ; from selenium.webdriver.chrome.options import Options ; option = Options() ; option.binary_location = chrome_portable_path
0 Python爬蟲:BeautifulSoup的 .find_all() 與 .find() 與 .select(‘標籤名[屬性名1=”屬性值1″][屬性名2=”屬性值2″]’) ; from bs4 import BeautifulSoup ; Live Server(可以預覽HTML的VS Code套件) 2025-03-30
0 Python str.split() 的 maxsplit 速懂教學(含常見陷阱與實用對比);如何分割標題號 與 標題文字? “3.1.2 Test Strategy”.split(maxsplit=1) #注意中間無底線: 非max_split 2025-10-13
近期留言