iT邦幫忙

鐵人檔案

2024 iThome 鐵人賽
回列表
Python

Python和R入門語法比較 系列

從print輸出開始整理起,包括讀檔、csv表格、資料型態、pandas、日期、文字處理、函數、爬蟲到matplotlib繪圖等等的python常見功能,對應R語言中的向量、ggplot...。
除了可以同時學習2門語言以外,每個單元會設計成環環相扣,順其自然地介紹需要記憶的語法。

鐵人鍊成 | 共 30 篇文章 | 1 人訂閱 訂閱系列文 RSS系列文 團隊為你抓鯉魚
DAY 11

04 Python: pandas Series 數值資料 v R: 數值向量 [16th 鐵人 Day 11]

Python Series import pandas as pd 建立數列1 2 3 4 pd.Series([1,2,3,4]) 0 1...

2024-09-24 ‧ 由 carplee 分享
DAY 12

05 Python: Pandas Series 字串資料 v. R:文字向量 [16th 鐵人 Day 12]

Python Python的pandas套件底下,有屬於pandas的特別的 資料的格式 ,其中一種,稱作Series。以下示範Series的用法: impor...

2024-09-25 ‧ 由 carplee 分享
DAY 13

06 日期 in Python and R [16th 鐵人 Day 13]

下載song_rank.csv Python import pandas as pd with open('data/song_rank.csv') as f...

2024-09-26 ‧ 由 carplee 分享
DAY 14

07 Python 和 R 的 字串處理 [16th 鐵人 Day 14]

Python 接受的格式 a = '20210729' b = '2021.7.29' c = '2021/07/29' d = '29/7/2021' e =...

2024-09-27 ‧ 由 carplee 分享
DAY 15

08 [R] 用Regular Expression(正規表示法)處理文字 [16th 鐵人 Day 15]

延續【03 more about csv in Python and R】例子 下載song_rank.csv R #### 讀檔 #### # data/so...

2024-09-28 ‧ 由 carplee 分享
DAY 16

08 [python] 用Regular Expression(正規表示法)處理文字 [16th 鐵人 Day 16]

下載song_rank.csv 上篇【08 [R] 用Regular Expression(正規表示法)處理文字】 本篇 # Python import pan...

2024-09-29 ‧ 由 carplee 分享
DAY 17

09 [python] 表格 dataframe.insert插入欄位 和 字串處理 Series.str.split [16th 鐵人 Day 17]

點我下載:song_rank2.csv 讀檔 import pandas as pd with open('data/song_rank2.csv') as...

2024-09-30 ‧ 由 carplee 分享
DAY 18

09 [R] 表格 dataframe dplyr::mutate()插入欄位 和 字串處理strsplit() [16th 鐵人 Day 18]

點我下載:song_rank2.csv 讀檔 data/song_rank.csv setwd('/Users/carplee/Desktop/IT pytho...

2024-10-01 ‧ 由 carplee 分享
DAY 19

10 [python] pandas的欄列選擇工具 dataframe.loc[ ]和.iloc[ ] [16th 鐵人 Day 19]

點我下載:song_rank2.csv 讀檔 import pandas as pd with open('data/song_rank2.csv') as...

2024-10-02 ‧ 由 carplee 分享
DAY 20

10 [R] r的dataframe欄列選擇方式 [16th 鐵人 Day 20]

點我下載:song_rank2.csv 讀檔 setwd('/Users/carplee/Desktop/IT python') r = read.csv('d...

2024-10-03 ‧ 由 carplee 分享