作者查詢 / poototo

總覽項目: 發文 | 留言 | 暱稱
作者 poototo 在 PTT [ Python ] 看板的留言(推文), 共155則
限定看板:Python
[問題] 抓取txt特定內容並作註解or計算
[ Python ]12 留言, 推噓總分: +3
作者: billdarkest - 發表於 2020/02/06 22:36(4年前)
3Fpoototo: 正則表示式?02/07 12:49
[問題] 載入網頁資訊發生問題
[ Python ]6 留言, 推噓總分: +1
作者: hellokidding - 發表於 2020/02/06 17:01(4年前)
3Fpoototo: 若用看看requests ?02/06 21:19
[問題] jupyter一直開不起來
[ Python ]14 留言, 推噓總分: +4
作者: cara5659 - 發表於 2020/02/05 22:59(4年前)
12Fpoototo: https://github.com/jupyter/notebook/issues/433202/06 21:14
13Fpoototo: google的解法也試試,裝32bit,加path02/06 21:15
[問題] 如何在Synology上安裝Python3.6以上
[ Python ]17 留言, 推噓總分: +5
作者: lin7345 - 發表於 2020/02/04 22:31(4年前)
1Fpoototo: 安裝anaconda,就自動裝python 3.702/04 23:43
[問題] dataframe卡關
[ Python ]25 留言, 推噓總分: +7
作者: yimean - 發表於 2020/01/28 23:09(4年前)
1Fpoototo: df=df.set_index(["出貨日期"])01/28 23:55
2Fpoototo: 以時間序列做index,然後設取樣頻率01/28 23:56
3Fpoototo: resample,asfreq...相關用法及參數下得好,比SQL更簡單01/29 00:05
4Fpoototo: 或者新增一個月份欄位來groupby01/29 00:13
5Fpoototo: df['月']=df['出貨日期'].map(lambda x:x[5:7])01/29 00:34
23Fpoototo: 用jupyter看顯示出的樣子久了,可以看出V是Series01/29 20:49
24Fpoototo: series.to_frame().plot.bar() 轉成df再畫也OK01/29 20:51
25Fpoototo: 你就不用拆x跟y,也可以同年份多欄位的bar一次畫出來01/29 20:54
[問題] 超新手詢問Jupyter問題
[ Python ]6 留言, 推噓總分: +4
作者: monica1003 - 發表於 2020/01/26 22:53(4年前)
3Fpoototo: 該檔案的目錄 > 內容 > 安全性 ...去變更權限01/27 00:28
[問題] beautifulsoup爬蟲問題
[ Python ]9 留言, 推噓總分: +4
作者: snakei14702 - 發表於 2020/01/03 05:51(4年前)
9Fpoototo: selenium把瀏覽器視窗及載圖關掉01/05 08:21
[問題] 比對csv重複資料
[ Python ]3 留言, 推噓總分: +3
作者: legov - 發表於 2019/12/22 19:36(4年前)
3Fpoototo: 累積紀錄第四欄的相異值all_unique_d,all_data換掉12/22 22:27
[問題] ImportError:no module 怎麼解決?
[ Python ]7 留言, 推噓總分: +6
作者: a98987605 - 發表於 2019/12/11 15:18(4年前)
6Fpoototo: 先conda activate,在該環境下conda install12/11 23:00
[問題] selenium headless抓不到元素
[ Python ]4 留言, 推噓總分: +2
作者: poototo - 發表於 2019/10/13 11:53(4年前)
1Fpoototo: 加 chrome_options.add_argument('user-agent=Mozilla...10/13 15:32
2Fpoototo: 使用者代理可解決10/13 15:34