Pandas中DataFrame的属性及方法大全
生活随笔
收集整理的這篇文章主要介紹了
Pandas中DataFrame的属性及方法大全
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
所有屬性
| at | 訪問(wèn)行/列標(biāo)簽對(duì)的單個(gè)值。 |
| attrs | 此對(duì)象的全局屬性字典。 |
| axes | 返回一個(gè)表示DataFrame軸的列表。 |
| columns | DataFrame的列標(biāo)簽。 |
| dtypes | 返回DataFrame中的dtype。 |
| empty | 指示DataFrame是否為空。 |
| iat | 通過(guò)整數(shù)位置訪問(wèn)行/列對(duì)的單個(gè)值。 |
| iloc | 基于位置的純基于整數(shù)位置的索引。 |
| index | DataFrame的索引(行標(biāo)簽)。 |
| loc | 通過(guò)標(biāo)簽或布爾數(shù)組訪問(wèn)一組行和列。 |
| ndim | 返回一個(gè)表示軸數(shù)/數(shù)組維數(shù)的整數(shù)。 |
| shape | 返回一個(gè)表示DataFrame維數(shù)的元組。 |
| size | 返回一個(gè)int表示此對(duì)象中元素的數(shù)量。 |
| style | 返回一個(gè)Styler對(duì)象。 |
| values | 返回DataFrame的Numpy表示形式。 |
所有方法
| abs() | 返回具有每個(gè)元素的絕對(duì)數(shù)值的Series / DataFrame。 |
| add(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀和其他元素的加法(二進(jìn)制運(yùn)算符add)。 |
| add_prefix(prefix) | 帶字符串前綴的前綴標(biāo)簽。 |
| add_suffix(suffix) | 帶字符串后綴的后綴標(biāo)簽。 |
| agg([func, axis]) | 使用指定軸上的一項(xiàng)或多項(xiàng)操作進(jìn)行匯總。 |
| aggregate([func, axis]) | 使用指定軸上的一項(xiàng)或多項(xiàng)操作進(jìn)行匯總。 |
| align(other[, join, axis, level, copy, …]) | 使用指定的join方法將兩個(gè)對(duì)象在其軸上對(duì)齊。 |
| all([axis, bool_only, skipna, level]) | 返回是否所有元素都為True(可能在某個(gè)軸上)。 |
| any([axis, bool_only, skipna, level]) | 返回是否有任何元素為True(可能在某個(gè)軸上)。 |
| append(other[, ignore_index, …]) | 將其他行附加到調(diào)用方的末尾,返回一個(gè)新對(duì)象。 |
| apply(func[, axis, raw, result_type, args]) | 沿DataFrame的軸應(yīng)用功能。 |
| applymap(func) | 將函數(shù)應(yīng)用于元素的數(shù)據(jù)框。 |
| asfreq(freq[, method, how, normalize, …]) | 將TimeSeries轉(zhuǎn)換為指定的頻率。 |
| asof(where[, subset]) | 返回在此之前沒(méi)有任何NaN的最后一行。 |
| assign(**kwargs) | 將新列分配給DataFrame。 |
| astype(dtype[, copy, errors]) | 將熊貓對(duì)象轉(zhuǎn)換為指定的dtype dtype。 |
| at_time(time[, asof, axis]) | 選擇一天中特定時(shí)間的值(例如,上午9:30)。 |
| backfill([axis, inplace, limit, downcast]) | DataFrame.fillna()的同義詞,帶有method =‘bfill’。 |
| between_time(start_time, end_time[, …]) | 選擇一天中特定時(shí)間之間的值(例如9:00-9:30 AM)。 |
| bfill([axis, inplace, limit, downcast]) | DataFrame.fillna()的同義詞,帶有method =‘bfill’。 |
| bool() | 返回單個(gè)元素Series或DataFrame的布爾值。 |
| boxplot([column, by, ax, fontsize, rot, …]) | 從DataFrame列制作箱形圖。 |
| clip([lower, upper, axis, inplace]) | 修剪輸入閾值處的值。 |
| combine(other, func[, fill_value, overwrite]) | 與另一個(gè)DataFrame進(jìn)行按列合并。 |
| combine_first(other) | 在其他位置的相同位置更新具有值的空元素。 |
| compare(other[, align_axis, keep_shape, …]) | 與另一個(gè)DataFrame進(jìn)行比較并顯示差異。 |
| convert_dtypes([infer_objects, …]) | 使用支持pd.NA的dtypes將列轉(zhuǎn)換為最佳的dtypes。 |
| copy([deep]) | 復(fù)制該對(duì)象的索引和數(shù)據(jù)。 |
| corr([method, min_periods]) | 計(jì)算列的成對(duì)相關(guān),不包括NA /空值。 |
| corrwith(other[, axis, drop, method]) | 計(jì)算成對(duì)相關(guān)。 |
| count([axis, level, numeric_only]) | 為每一列或每一行計(jì)算非NA單元。 |
| cov([min_periods, ddof]) | 計(jì)算列的成對(duì)協(xié)方差,不包括NA /空值。 |
| cummax([axis, skipna]) | 返回DataFrame或Series軸上的累積最大值。 |
| cummin([axis, skipna]) | 返回DataFrame或Series軸上的累積最小值。 |
| cumprod([axis, skipna]) | 通過(guò)DataFrame或Series軸返回累積乘積。 |
| cumsum([axis, skipna]) | 返回DataFrame或Series軸上的累積總和。 |
| describe([percentiles, include, exclude, …]) | 生成描述性統(tǒng)計(jì)信息。 |
| diff([periods, axis]) | 元素的第一個(gè)離散差。 |
| div(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀和其他元素的浮點(diǎn)除法(二進(jìn)制運(yùn)算符truediv)。 |
| divide(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀和其他元素的浮點(diǎn)除法(二進(jìn)制運(yùn)算符truediv)。 |
| dot(other) | 計(jì)算DataFrame與其他框架之間的矩陣乘法。 |
| drop([labels, axis, index, columns, level, …]) | 從行或列中刪除指定的標(biāo)簽。 |
| drop_duplicates([subset, keep, inplace, …]) | 返回刪除重復(fù)行的DataFrame。 |
| droplevel(level[, axis]) | 返回已刪除請(qǐng)求的索引/列級(jí)別的DataFrame。 |
| dropna([axis, how, thresh, subset, inplace]) | 刪除缺失的值。 |
| duplicated([subset, keep]) | 返回表示重復(fù)行的布爾系列。 |
| eq(other[, axis, level]) | 等于等于數(shù)據(jù)幀和其他按元素計(jì)算(二進(jìn)制運(yùn)算符eq)。 |
| equals(other) | 測(cè)試兩個(gè)對(duì)象是否包含相同的元素。 |
| eval(expr[, inplace]) | 評(píng)估描述DataFrame列上的操作的字符串。 |
| ewm([com, span, halflife, alpha, …]) | 提供指數(shù)加權(quán)(EW)函數(shù)。 |
| expanding([min_periods, center, axis]) | 提供擴(kuò)展的轉(zhuǎn)換。 |
| explode(column[, ignore_index]) | 將類似列表的每個(gè)元素轉(zhuǎn)換為一行,復(fù)制索引值。 |
| ffill([axis, inplace, limit, downcast]) | DataFrame.fillna()的同義詞,方法=‘ffill’。 |
| fillna([value, method, axis, inplace, …]) | 使用指定的方法填充NA / NaN值。 |
| filter([items, like, regex, axis]) | 根據(jù)指定的索引標(biāo)簽對(duì)數(shù)據(jù)框的行或列進(jìn)行子集設(shè)置。 |
| first(offset) | 根據(jù)日期偏移量選擇時(shí)間序列數(shù)據(jù)的初始時(shí)段。 |
| first_valid_index() | 返回第一個(gè)非NA /空值的索引。 |
| floordiv(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀的整數(shù)除法和其他逐元素的方法(二進(jìn)制運(yùn)算符florordiv)。 |
| from_dict(data[, orient, dtype, columns]) | 從類似數(shù)組或字典的字典構(gòu)造DataFrame。 |
| from_records(data[, index, exclude, …]) | 將結(jié)構(gòu)化或記錄ndarray轉(zhuǎn)換為DataFrame。 |
| ge(other[, axis, level]) | 獲取大于或等于數(shù)據(jù)幀和其他逐元素的值(二進(jìn)制運(yùn)算符ge)。 |
| get(key[, default]) | 從對(duì)象獲取給定鍵的項(xiàng)目(例如:DataFrame列)。 |
| groupby([by, axis, level, as_index, sort, …]) | 使用映射器或按一系列列對(duì)DataFrame進(jìn)行分組。 |
| gt(other[, axis, level]) | 獲取大于dataframe和其他逐個(gè)元素的值(二進(jìn)制運(yùn)算符>)。 |
| head([n]) | 返回前n行 |
| hist([column, by, grid, xlabelsize, xrot, …]) | 制作DataFrame的直方圖。 |
| idxmax([axis, skipna]) | 返回在請(qǐng)求軸上第一次出現(xiàn)最大值的索引。 |
| idxmin([axis, skipna]) | 在請(qǐng)求的軸上第一次出現(xiàn)最小值的返回索引。 |
| infer_objects() | 嘗試為對(duì)象列推斷更好的dtype。 |
| info([verbose, buf, max_cols, memory_usage, …]) | 打印DataFrame的簡(jiǎn)要摘要。 |
| insert(loc, column, value[, allow_duplicates]) | 將列插入DataFrame中的指定位置。 |
| interpolate([method, axis, limit, inplace, …]) | 請(qǐng)注意,具有MultiIndex的DataFrame / Series僅支持method =‘linear’。 |
| isin(values) | DataFrame中的每個(gè)元素是否包含在值中。 |
| isna() | 檢測(cè)缺失值。 |
| isnull() | 檢測(cè)缺失值。 |
| items() | 遍歷(列名,系列)對(duì)。 |
| iteritems() | 遍歷(列名,系列)對(duì)。 |
| iterrows() | 將DataFrame行作為(索引,系列)對(duì)進(jìn)行迭代。 |
| itertuples([index, name]) | 以namedtuple的形式遍歷DataFrame行。 |
| join(other[, on, how, lsuffix, rsuffix, sort]) | 連接另一個(gè)DataFrame的列。 |
| keys() | 獲取“信息軸”(有關(guān)更多信息,請(qǐng)參見(jiàn)索引)。 |
| kurt([axis, skipna, level, numeric_only]) | 在請(qǐng)求的軸上返回?zé)o偏峰度。 |
| kurtosis([axis, skipna, level, numeric_only]) | 在請(qǐng)求的軸上返回?zé)o偏峰度。 |
| last(offset) | 根據(jù)日期偏移量選擇時(shí)間序列數(shù)據(jù)的最后時(shí)段。 |
| last_valid_index() | 返回上一個(gè)非NA /空值的索引。 |
| le(other[, axis, level]) | 小于或等于dataframe和其他逐元素(二進(jìn)制運(yùn)算符)。 |
| lookup(row_labels, col_labels) | DataFrame基于標(biāo)簽的“花式索引”功能。 |
| lt(other[, axis, level]) | 獲取小于dataframe和其他元素級(jí)數(shù)(二進(jìn)制運(yùn)算符lt)。 |
| mad([axis, skipna, level]) | 返回所請(qǐng)求軸的值的平均絕對(duì)偏差。 |
| mask(cond[, other, inplace, axis, level, …]) | 替換條件為True的值。 |
| max([axis, skipna, level, numeric_only]) | 返回所請(qǐng)求軸的最大值。 |
| mean([axis, skipna, level, numeric_only]) | 返回值的平均值 |
| median([axis, skipna, level, numeric_only]) | 返回所請(qǐng)求軸的值的中值。 |
| melt([id_vars, value_vars, var_name, …]) | 取消將DataFrame從寬格式轉(zhuǎn)為長(zhǎng)格式,可以選擇保留標(biāo)識(shí)符。 |
| memory_usage([index, deep]) | 返回每列的內(nèi)存使用情況(以字節(jié)為單位)。 |
| merge(right[, how, on, left_on, right_on, …]) | 用數(shù)據(jù)庫(kù)樣式的聯(lián)接合并DataFrame或命名的Series對(duì)象。 |
| min([axis, skipna, level, numeric_only]) | 返回所請(qǐng)求軸的最小值。 |
| mod(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀的Modulo以及其他按元素的方式(二進(jìn)制運(yùn)算符mod)。 |
| mode([axis, numeric_only, dropna]) | 獲取沿選定軸的每個(gè)元素的模式。 |
| mul(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀和其他逐元素的乘法(二進(jìn)制運(yùn)算符mul)。 |
| multiply(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀和其他逐元素的乘法(二進(jìn)制運(yùn)算符mul)。 |
| ne(other[, axis, level]) | 獲取不等于dataframe的值以及其他逐元素的值(二進(jìn)制運(yùn)算符ne)。 |
| nlargest(n, columns[, keep]) | 按降序返回按列排序的前n行。 |
| notna() | 檢測(cè)現(xiàn)有(非缺失)值。 |
| notnull() | 檢測(cè)現(xiàn)有(非缺失)值。 |
| nsmallest(n, columns[, keep]) | 按升序返回列排序的前n行。 |
| nunique([axis, dropna]) | 計(jì)算請(qǐng)求軸上的不同觀察值。 |
| pad([axis, inplace, limit, downcast]) | DataFrame.fillna()的同義詞,方法=‘ffill’。 |
| pct_change([periods, fill_method, limit, freq]) | 當(dāng)前元素與先前元素之間的百分比變化。 |
| pipe(func, *args, **kwargs) | 應(yīng)用func(self,* args,** kwargs)。 |
| pivot([index, columns, values]) | 返回按給定的索引/列值組織的重整型DataFrame。 |
| pivot_table([values, index, columns, …]) | 創(chuàng)建電子表格樣式的數(shù)據(jù)透視表作為DataFrame。 |
| plot | pandas.plotting._core.PlotAccessor的別名 |
| pop(item) | 返回項(xiàng)目并從框架中放下。 |
| pow(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀和其他元素的指數(shù)冪(二進(jìn)制運(yùn)算符pow)。 |
| prod([axis, skipna, level, numeric_only, …]) | 返回所請(qǐng)求軸的值的乘積。 |
| product([axis, skipna, level, numeric_only, …]) | 返回所請(qǐng)求軸的值的乘積。 |
| quantile([q, axis, numeric_only, interpolation]) | 在請(qǐng)求的軸上以給定的分位數(shù)返回值。 |
| query(expr[, inplace]) | 使用布爾表達(dá)式查詢DataFrame的列。 |
| radd(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀和其他元素的加法(二進(jìn)制運(yùn)算符radd)。 |
| rank([axis, method, numeric_only, …]) | 沿軸計(jì)算數(shù)值數(shù)據(jù)等級(jí)(1到n)。 |
| rdiv(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀和其他元素的浮點(diǎn)除法(二進(jìn)制運(yùn)算符rtruediv)。 |
| reindex(**kwargs) | 使用可選的填充邏輯使Series / DataFrame與新索引一致。 |
| reindex_like(other[, method, copy, limit, …]) | 返回具有匹配索引的對(duì)象作為其他對(duì)象。 |
| rename(**kwargs) | 更改軸標(biāo)簽。 |
| rename_axis(**kwargs) | 設(shè)置索引或列的軸名稱。 |
| reorder_levels(order[, axis]) | 使用輸入順序重新排列索引級(jí)別。 |
| replace([to_replace, value, inplace, limit, …]) | 將to_replace中給定的值替換為value。 |
| resample(rule[, axis, closed, label, …]) | 重新采樣時(shí)間序列數(shù)據(jù)。 |
| reset_index([level, drop, inplace, …]) | 重置索引或索引的級(jí)別。 |
| rfloordiv(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀的整數(shù)除法和其他逐元素的方法(二進(jìn)制運(yùn)算符rfloordiv)。 |
| rmod(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀的Modulo以及其他按元素的方式(二進(jìn)制運(yùn)算符rmod)。 |
| rmul(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀和其他逐元素的乘法(二進(jìn)制運(yùn)算符rmul)。 |
| rolling(window[, min_periods, center, …]) | 提供滾動(dòng)窗口計(jì)算。 |
| round([decimals]) | 將DataFrame舍入到小數(shù)位數(shù)可變。 |
| rpow(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀和其他元素的指數(shù)冪(二進(jìn)制運(yùn)算符rpow)。 |
| rsub(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀的減法和其他逐元素的方法(二進(jìn)制運(yùn)算符rsub)。 |
| rtruediv(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀和其他元素的浮點(diǎn)除法(二進(jìn)制運(yùn)算符rtruediv)。 |
| sample([n, frac, replace, weights, …]) | 從對(duì)象軸返回隨機(jī)的項(xiàng)目樣本。 |
| select_dtypes([include, exclude]) | 根據(jù)列dtypes返回DataFrame列的子集。 |
| sem([axis, skipna, level, ddof, numeric_only]) | 返回要求軸上的平均值的無(wú)偏標(biāo)準(zhǔn)誤差。 |
| set_axis(labels[, axis, inplace]) | 將所需的索引分配給給定軸。 |
| set_index(keys[, drop, append, inplace, …]) | 使用現(xiàn)有列設(shè)置DataFrame索引。 |
| shift([periods, freq, axis, fill_value]) | 按所需的周期數(shù)移動(dòng)索引,并帶有可選的時(shí)間頻率。 |
| skew([axis, skipna, level, numeric_only]) | 在請(qǐng)求的軸上返回?zé)o偏斜。 |
| slice_shift([periods, axis]) | 相當(dāng)于移位而不復(fù)制數(shù)據(jù)。 |
| sort_index([axis, level, ascending, …]) | 按標(biāo)簽(沿軸)對(duì)對(duì)象排序。 |
| sort_values(by[, axis, ascending, inplace, …]) | 沿任一軸的值排序。 |
| sparse | pandas.core.arrays.sparse.accessor.SparseFrameAccessor的別名 |
| squeeze([axis]) | 將一維軸對(duì)象壓縮為標(biāo)量。 |
| stack([level, dropna]) | 從列到索引堆疊指定級(jí)別。 |
| std([axis, skipna, level, ddof, numeric_only]) | 返回要求軸上的樣品標(biāo)準(zhǔn)偏差。 |
| sub(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀的減法和其他逐元素的方法(二進(jìn)制運(yùn)算符sub)。 |
| subtract(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀的減法和其他逐元素的方法(二進(jìn)制運(yùn)算符sub)。 |
| sum([axis, skipna, level, numeric_only, …]) | 返回所請(qǐng)求軸的值之和。 |
| swapaxes(axis1, axis2[, copy]) | 適當(dāng)?shù)亟粨Q軸和交換值軸。 |
| swaplevel([i, j, axis]) | 在特定軸上的MultiIndex中交換級(jí)別i和j。 |
| tail([n]) | 返回最后一行 |
| take(indices[, axis, is_copy]) | 沿軸返回給定位置索引中的元素。 |
| to_clipboard([excel, sep]) | 將對(duì)象復(fù)制到系統(tǒng)剪貼板。 |
| to_csv([path_or_buf, sep, na_rep, …]) | 將對(duì)象寫入逗號(hào)分隔值(csv)文件。 |
| to_dict([orient, into]) | 將DataFrame轉(zhuǎn)換為字典。 |
| to_excel(excel_writer[, sheet_name, na_rep, …]) | 將對(duì)象寫入Excel工作表。 |
| to_feather(**kwargs) | 將DataFrame寫入二進(jìn)制Feather格式。 |
| to_gbq(destination_table[, project_id, …]) | 將DataFrame寫入Google BigQuery表。 |
| to_hdf(path_or_buf, key[, mode, complevel, …]) | 使用HDFStore將包含的數(shù)據(jù)寫入HDF5文件。 |
| to_html([buf, columns, col_space, header, …]) | 將DataFrame呈現(xiàn)為HTML表。 |
| to_json([path_or_buf, orient, date_format, …]) | 將對(duì)象轉(zhuǎn)換為JSON字符串。 |
| to_latex([buf, columns, col_space, header, …]) | 將對(duì)象渲染為L(zhǎng)aTeX表格,長(zhǎng)表或嵌套表/表格。 |
| to_markdown([buf, mode, index]) | 以Markdown友好格式打印DataFrame。 |
| to_numpy([dtype, copy, na_value]) | 將DataFrame轉(zhuǎn)換為NumPy數(shù)組。 |
| to_parquet(**kwargs) | 將DataFrame寫入二進(jìn)制拼花格式。 |
| to_period([freq, axis, copy]) | 將DataFrame從DatetimeIndex轉(zhuǎn)換為PeriodIndex。 |
| to_pickle(path[, compression, protocol]) | 將對(duì)象腌制(序列化)到文件。 |
| to_records([index, column_dtypes, index_dtypes]) | 將DataFrame轉(zhuǎn)換為NumPy記錄數(shù)組。 |
| to_sql(name, con[, schema, if_exists, …]) | 將存儲(chǔ)在DataFrame中的記錄寫入SQL數(shù)據(jù)庫(kù)。 |
| to_stata(**kwargs) | 將DataFrame對(duì)象導(dǎo)出為Stata dta格式。 |
| to_string([buf, columns, col_space, header, …]) | 將DataFrame渲染到控制臺(tái)友好的表格輸出。 |
| to_timestamp([freq, how, axis, copy]) | 在時(shí)段開(kāi)始時(shí)將其強(qiáng)制轉(zhuǎn)換為時(shí)間戳的DatetimeIndex。 |
| to_xarray() | 從pandas對(duì)象返回一個(gè)xarray對(duì)象。 |
| transform(func[, axis]) | 自我調(diào)用func產(chǎn)生具有轉(zhuǎn)換值的DataFrame。 |
| transpose(*args[, copy]) | 轉(zhuǎn)置索引和列。 |
| truediv(other[, axis, level, fill_value]) | 獲取數(shù)據(jù)幀和其他元素的浮點(diǎn)除法(二進(jìn)制運(yùn)算符或truediv)。 |
| truncate([before, after, axis, copy]) | 在某個(gè)索引值之前和之后截?cái)郤eries或DataFrame。 |
| tshift([periods, freq, axis]) | (已棄用)使用時(shí)標(biāo)頻率(如果有)移動(dòng)時(shí)間索引。 |
| tz_convert(tz[, axis, level, copy]) | 將可感知tz的軸轉(zhuǎn)換為目標(biāo)時(shí)區(qū)。 |
| tz_localize(tz[, axis, level, copy, …]) | 將Series或DataFrame的tz天真索引本地化為目標(biāo)時(shí)區(qū)。 |
| unstack([level, fill_value]) | 樞轉(zhuǎn)一個(gè)級(jí)別(必要的層次結(jié)構(gòu))索引標(biāo)簽。 |
| update(other[, join, overwrite, …]) | 使用來(lái)自另一個(gè)DataFrame的非NA值就地進(jìn)行修改。 |
| value_counts([subset, normalize, sort, …]) | 返回一個(gè)包含DataFrame中唯一行數(shù)的Series。 |
| var([axis, skipna, level, ddof, numeric_only]) | 返回請(qǐng)求軸上的無(wú)偏方差。 |
| where(cond[, other, inplace, axis, level, …]) | 替換條件為False的值。 |
| xs(key[, axis, level, drop_level]) | 從Series / DataFrame返回橫截面。 |
總結(jié)
以上是生活随笔為你收集整理的Pandas中DataFrame的属性及方法大全的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Pandas缺失数据最快定位方式(极少代
- 下一篇: Pandas简明教程:五、Pandas简