91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Pandas中DataFrame基本函數有哪些

發布時間:2022-10-11 11:28:29 來源:億速云 閱讀:150 作者:iii 欄目:web開發

這篇文章主要介紹“Pandas中DataFrame基本函數有哪些”,在日常操作中,相信很多人在Pandas中DataFrame基本函數有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Pandas中DataFrame基本函數有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

構造函數
DataFrame.axes                                #index: 行標簽;columns: 列標簽
DataFrame.as_matrix([columns])                #轉換為矩陣
DataFrame.dtypes                              #返回數據的類型
DataFrame.ftypes                              #返回每一列的 數據類型float64:dense
DataFrame.get_dtype_counts()                  #返回數據框數據類型的個數
DataFrame.get_ftype_counts()                  #返回數據框數據類型float64:dense的個數
DataFrame.select_dtypes([include, include])   #根據數據類型選取子數據框
DataFrame.values                              #Numpy的展示方式
DataFrame.axes                                #返回橫縱坐標的標簽名
DataFrame.ndim                                #返回數據框的緯度
DataFrame.size                                #返回數據框元素的個數
DataFrame.shape                               #返回數據框的形狀
DataFrame.memory_usage()                      #每一列的存儲
屬性和數據
DataFrame.axes                                #index: 行標簽;columns: 列標簽
DataFrame.as_matrix([columns])                #轉換為矩陣
DataFrame.dtypes                              #返回數據的類型
DataFrame.ftypes                              #返回每一列的 數據類型float64:dense
DataFrame.get_dtype_counts()                  #返回數據框數據類型的個數
DataFrame.get_ftype_counts()                  #返回數據框數據類型float64:dense的個數
DataFrame.select_dtypes([include, include])   #根據數據類型選取子數據框
DataFrame.values                              #Numpy的展示方式
DataFrame.axes                                #返回橫縱坐標的標簽名
DataFrame.ndim                                #返回數據框的緯度
DataFrame.size                                #返回數據框元素的個數
DataFrame.shape                               #返回數據框的形狀
DataFrame.memory_usage()                      #每一列的存儲
類型轉換
DataFrame.astype(dtype[, copy, errors])       #轉換數據類型
DataFrame.copy([deep])                        #deep深度復制數據
DataFrame.isnull()                            #以布爾的方式返回空值
DataFrame.notnull()                           #以布爾的方式返回非空值
索引和迭代
DataFrame.head([n])                           #返回前n行數據
DataFrame.at                                  #快速標簽常量訪問器
DataFrame.iat                                 #快速整型常量訪問器
DataFrame.loc                                 #標簽定位,使用名稱
DataFrame.iloc                                #整型定位,使用數字
DataFrame.insert(loc, column, value)          #在特殊地點loc[數字]插入column[列名]某列數據
DataFrame.iter()                              #Iterate over infor axis
DataFrame.iteritems()                         #返回列名和序列的迭代器
DataFrame.iterrows()                          #返回索引和序列的迭代器
DataFrame.itertuples([index, name])           #Iterate over DataFrame rows as namedtuples, with index value as first element of the tuple.
DataFrame.lookup(row_labels, col_labels)      #Label-based “fancy indexing” function for DataFrame.
DataFrame.pop(item)                           #返回刪除的項目
DataFrame.tail([n])                           #返回最后n行
DataFrame.xs(key[, axis, level, drop_level])  #Returns a cross-section (row(s) or column(s)) from the Series/DataFrame.
DataFrame.isin(values)                        #是否包含數據框中的元素
DataFrame.where(cond[, other, inplace, …])    #條件篩選
DataFrame.mask(cond[, other, inplace, …])     #Return an object of same shape as self and whose corresponding entries are from self where cond is False and otherwise are from other.
DataFrame.query(expr[, inplace])              #Query the columns of a frame with a boolean expression.
二元運算
DataFrame.add(other[,axis,fill_value])        #加法,元素指向
DataFrame.sub(other[,axis,fill_value])        #減法,元素指向
DataFrame.mul(other[, axis,fill_value])       #乘法,元素指向
DataFrame.div(other[, axis,fill_value])       #小數除法,元素指向
DataFrame.truediv(other[, axis, level, …])    #真除法,元素指向
DataFrame.floordiv(other[, axis, level, …])   #向下取整除法,元素指向
DataFrame.mod(other[, axis,fill_value])       #模運算,元素指向
DataFrame.pow(other[, axis,fill_value])       #冪運算,元素指向
DataFrame.radd(other[, axis,fill_value])      #右側加法,元素指向
DataFrame.rsub(other[, axis,fill_value])      #右側減法,元素指向
DataFrame.rmul(other[, axis,fill_value])      #右側乘法,元素指向
DataFrame.rdiv(other[, axis,fill_value])      #右側小數除法,元素指向
DataFrame.rtruediv(other[, axis, …])          #右側真除法,元素指向
DataFrame.rfloordiv(other[, axis, …])         #右側向下取整除法,元素指向
DataFrame.rmod(other[, axis,fill_value])      #右側模運算,元素指向
DataFrame.rpow(other[, axis,fill_value])      #右側冪運算,元素指向
DataFrame.lt(other[, axis, level])            #類似Array.lt
DataFrame.gt(other[, axis, level])            #類似Array.gt
DataFrame.le(other[, axis, level])            #類似Array.le
DataFrame.ge(other[, axis, level])            #類似Array.ge
DataFrame.ne(other[, axis, level])            #類似Array.ne
DataFrame.eq(other[, axis, level])            #類似Array.eq
DataFrame.combine(other,func[,fill_value, …]) #Add two DataFrame objects and do not propagate NaN values, so if for a
DataFrame.combine_first(other)                #Combine two DataFrame objects and default to non-null values in frame calling the method.
函數應用&分組&窗口
DataFrame.apply(func[, axis, broadcast, …])   #應用函數
DataFrame.applymap(func)                      #Apply a function to a DataFrame that is intended to operate elementwise, i.e.
DataFrame.aggregate(func[, axis])             #Aggregate using callable, string, dict, or list of string/callables
DataFrame.transform(func, *args, **kwargs)    #Call function producing a like-indexed NDFrame
DataFrame.groupby([by, axis, level, …])       #分組
DataFrame.rolling(window[, min_periods, …])   #滾動窗口
DataFrame.expanding([min_periods, freq, …])   #拓展窗口
DataFrame.ewm([com, span, halflife,  …])      #指數權重窗口
描述統計學
DataFrame.abs()                               #返回絕對值
DataFrame.all([axis, bool_only, skipna])      #Return whether all elements are True over requested axis
DataFrame.any([axis, bool_only, skipna])      #Return whether any element is True over requested axis
DataFrame.clip([lower, upper, axis])          #Trim values at input threshold(s).
DataFrame.clip_lower(threshold[, axis])       #Return copy of the input with values below given value(s) truncated.
DataFrame.clip_upper(threshold[, axis])       #Return copy of input with values above given value(s) truncated.
DataFrame.corr([method, min_periods])         #返回本數據框成對列的相關性系數
DataFrame.corrwith(other[, axis, drop])       #返回不同數據框的相關性
DataFrame.count([axis, level, numeric_only])  #返回非空元素的個數
DataFrame.cov([min_periods])                  #計算協方差
DataFrame.cummax([axis, skipna])              #Return cumulative max over requested axis.
DataFrame.cummin([axis, skipna])              #Return cumulative minimum over requested axis.
DataFrame.cumprod([axis, skipna])             #返回累積
DataFrame.cumsum([axis, skipna])              #返回累和
DataFrame.describe([percentiles,include, …])  #整體描述數據框
DataFrame.diff([periods, axis])               #1st discrete difference of object
DataFrame.eval(expr[, inplace])               #Evaluate an expression in the context of the calling DataFrame instance.
DataFrame.kurt([axis, skipna, level, …])      #返回無偏峰度Fisher’s  (kurtosis of normal == 0.0).
DataFrame.mad([axis, skipna, level])          #返回偏差
DataFrame.max([axis, skipna, level, …])       #返回最大值
DataFrame.mean([axis, skipna, level, …])      #返回均值
DataFrame.median([axis, skipna, level, …])    #返回中位數
DataFrame.min([axis, skipna, level, …])       #返回最小值
DataFrame.mode([axis, numeric_only])          #返回眾數
DataFrame.pct_change([periods, fill_method])  #返回百分比變化
DataFrame.prod([axis, skipna, level, …])      #返回連乘積
DataFrame.quantile([q, axis, numeric_only])   #返回分位數
DataFrame.rank([axis, method, numeric_only])  #返回數字的排序
DataFrame.round([decimals])                   #Round a DataFrame to a variable number of decimal places.
DataFrame.sem([axis, skipna, level, ddof])    #返回無偏標準誤
DataFrame.skew([axis, skipna, level, …])      #返回無偏偏度
DataFrame.sum([axis, skipna, level, …])       #求和
DataFrame.std([axis, skipna, level, ddof])    #返回標準誤差
DataFrame.var([axis, skipna, level, ddof])    #返回無偏誤差
從新索引&選取&標簽操作
DataFrame.add_prefix(prefix)                  #添加前綴
DataFrame.add_suffix(suffix)                  #添加后綴
DataFrame.align(other[, join, axis, level])   #Align two object on their axes with the
DataFrame.drop(labels[, axis, level, …])      #返回刪除的列
DataFrame.drop_duplicates([subset, keep, …])  #Return DataFrame with duplicate rows removed, optionally only
DataFrame.duplicated([subset, keep])          #Return boolean Series denoting duplicate rows, optionally only
DataFrame.equals(other)                       #兩個數據框是否相同
DataFrame.filter([items, like, regex, axis])  #過濾特定的子數據框
DataFrame.first(offset)                       #Convenience method for subsetting initial periods of time series data based on a date offset.
DataFrame.head([n])                           #返回前n行
DataFrame.idxmax([axis, skipna])              #Return index of first occurrence of maximum over requested axis.
DataFrame.idxmin([axis, skipna])              #Return index of first occurrence of minimum over requested axis.
DataFrame.last(offset)                        #Convenience method for subsetting final periods of time series data based on a date offset.
DataFrame.reindex([index, columns])           #Conform DataFrame to new index with optional filling logic, placing NA/NaN in locations having no value in the previous index.
DataFrame.reindex_axis(labels[, axis, …])     #Conform input object to new index with optional filling logic, placing NA/NaN in locations having no value in the previous index.
DataFrame.reindex_like(other[, method, …])    #Return an object with matching indices to myself.
DataFrame.rename([index, columns])            #Alter axes input function or functions.
DataFrame.rename_axis(mapper[, axis, copy])   #Alter index and / or columns using input function or functions.
DataFrame.reset_index([level, drop, …])       #For DataFrame with multi-level index, return new DataFrame with labeling information in the columns under the index names, defaulting to ‘level_0’, ‘level_1’, etc.
DataFrame.sample([n, frac, replace, …])       #返回隨機抽樣
DataFrame.select(crit[, axis])                #Return data corresponding to axis labels matching criteria
DataFrame.set_index(keys[, drop, append ])    #Set the DataFrame index (row labels) using one or more existing columns.
DataFrame.tail([n])                           #返回最后幾行
DataFrame.take(indices[, axis, convert])      #Analogous to ndarray.take
DataFrame.truncate([before, after, axis ])    #Truncates a sorted NDFrame before and/or after some particular index value.
處理缺失值
DataFrame.dropna([axis, how, thresh, …])      #Return object with labels on given axis omitted where alternately any
DataFrame.fillna([value, method, axis, …])    #填充空值
DataFrame.replace([to_replace, value, …])     #Replace values given in ‘to_replace’ with ‘value’.
從新定型&排序&轉變形態
DataFrame.pivot([index, columns, values])     #Reshape data (produce a “pivot” table) based on column values.
DataFrame.reorder_levels(order[, axis])       #Rearrange index levels using input order.
DataFrame.sort_values(by[, axis, ascending])  #Sort by the values along either axis
DataFrame.sort_index([axis, level, …])        #Sort object by labels (along an axis)
DataFrame.nlargest(n, columns[, keep])        #Get the rows of a DataFrame sorted by the n largest values of columns.
DataFrame.nsmallest(n, columns[, keep])       #Get the rows of a DataFrame sorted by the n smallest values of columns.
DataFrame.swaplevel([i, j, axis])             #Swap levels i and j in a MultiIndex on a particular axis
DataFrame.stack([level, dropna])              #Pivot a level of the (possibly hierarchical) column labels, returning a DataFrame (or Series in the case of an object with a single level of column labels) having a hierarchical index with a new inner-most level of row labels.
DataFrame.unstack([level, fill_value])        #Pivot a level of the (necessarily hierarchical) index labels, returning a DataFrame having a new level of column labels whose inner-most level consists of the pivoted index labels.
DataFrame.melt([id_vars, value_vars, …])      #“Unpivots” a DataFrame from wide format to long format, optionally
DataFrame.T                                   #Transpose index and columns
DataFrame.to_panel()                          #Transform long (stacked) format (DataFrame) into wide (3D, Panel) format.
DataFrame.to_xarray()                         #Return an xarray object from the pandas object.
DataFrame.transpose(*args, **kwargs)          #Transpose index and columns
Combining& joining&merging
DataFrame.append(other[, ignore_index, …])    #追加數據
DataFrame.assign(**kwargs)                    #Assign new columns to a DataFrame, returning a new object (a copy) with all the original columns in addition to the new ones.
DataFrame.join(other[, on, how, lsuffix, …])  #Join columns with other DataFrame either on index or on a key column.
DataFrame.merge(right[, how, on, left_on, …]) #Merge DataFrame objects by performing a database-style join operation by columns or indexes.
DataFrame.update(other[, join, overwrite, …]) #Modify DataFrame in place using non-NA values from passed DataFrame.
時間序列
DataFrame.asfreq(freq[, method, how, …])      #將時間序列轉換為特定的頻次
DataFrame.asof(where[, subset])               #The last row without any NaN is taken (or the last row without
DataFrame.shift([periods, freq, axis])        #Shift index by desired number of periods with an optional time freq
DataFrame.first_valid_index()                 #Return label for first non-NA/null value
DataFrame.last_valid_index()                  #Return label for last non-NA/null value
DataFrame.resample(rule[, how, axis, …])      #Convenience method for frequency conversion and resampling of time series.
DataFrame.to_period([freq, axis, copy])       #Convert DataFrame from DatetimeIndex to PeriodIndex with desired
DataFrame.to_timestamp([freq, how, axis])     #Cast to DatetimeIndex of timestamps, at beginning of period
DataFrame.tz_convert(tz[, axis, level, copy]) #Convert tz-aware axis to target time zone.
DataFrame.tz_localize(tz[, axis, level, …])   #Localize tz-naive TimeSeries to target time zone.
作圖
DataFrame.plot([x, y, kind, ax, ….])          #DataFrame plotting accessor and method
DataFrame.plot.area([x, y])                   #面積圖Area plot
DataFrame.plot.bar([x, y])                    #垂直條形圖Vertical bar plot
DataFrame.plot.barh([x, y])                   #水平條形圖Horizontal bar plot
DataFrame.plot.box([by])                      #箱圖Boxplot
DataFrame.plot.density(**kwds)                #核密度Kernel Density Estimate plot
DataFrame.plot.hexbin(x, y[, C, …])           #Hexbin plot
DataFrame.plot.hist([by, bins])               #直方圖Histogram
DataFrame.plot.kde(**kwds)                    #核密度Kernel Density Estimate plot
DataFrame.plot.line([x, y])                   #線圖Line plot
DataFrame.plot.pie([y])                       #餅圖Pie chart
DataFrame.plot.scatter(x, y[, s, c])          #散點圖Scatter plot
DataFrame.boxplot([column, by, ax, …])        #Make a box plot from DataFrame column optionally grouped by some columns or
DataFrame.hist(data[, column, by, grid, …])   #Draw histogram of the DataFrame’s series using matplotlib / pylab.
轉換為其他格式
DataFrame.from_csv(path[, header, sep, …])    #Read CSV file (DEPRECATED, please use pandas.read_csv() instead).
DataFrame.from_dict(data[, orient, dtype])    #Construct DataFrame from dict of array-like or dicts
DataFrame.from_items(items[,columns,orient])  #Convert (key, value) pairs to DataFrame.
DataFrame.from_records(data[, index, …])      #Convert structured or record ndarray to DataFrame
DataFrame.info([verbose, buf, max_cols, …])   #Concise summary of a DataFrame.
DataFrame.to_pickle(path[, compression, …])   #Pickle (serialize) object to input file path.
DataFrame.to_csv([path_or_buf, sep, na_rep])  #Write DataFrame to a comma-separated values (csv) file
DataFrame.to_hdf(path_or_buf, key, **kwargs)  #Write the contained data to an HDF5 file using HDFStore.
DataFrame.to_sql(name, con[, flavor, …])      #Write records stored in a DataFrame to a SQL database.
DataFrame.to_dict([orient, into])             #Convert DataFrame to dictionary.
DataFrame.to_excel(excel_writer[, …])         #Write DataFrame to an excel sheet
DataFrame.to_json([path_or_buf, orient, …])   #Convert the object to a JSON string.
DataFrame.to_html([buf, columns, col_space])  #Render a DataFrame as an HTML table.
DataFrame.to_feather(fname)                   #write out the binary feather-format for DataFrames
DataFrame.to_latex([buf, columns, …])         #Render an object to a tabular environment table.
DataFrame.to_stata(fname[, convert_dates, …]) #A class for writing Stata binary dta files from array-like objects
DataFrame.to_msgpack([path_or_buf, encoding]) #msgpack (serialize) object to input file path
DataFrame.to_sparse([fill_value, kind])       #Convert to SparseDataFrame
DataFrame.to_dense()                          #Return dense representation of NDFrame (as opposed to sparse)
DataFrame.to_string([buf, columns, …])        #Render a DataFrame to a console-friendly tabular output.
DataFrame.to_clipboard([excel, sep])          #Attempt to write text representation of object to the system clipboard This can be pasted into Excel, for example.

到此,關于“Pandas中DataFrame基本函數有哪些”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

福建省| 铁岭县| 古蔺县| 会昌县| 奉贤区| 泰宁县| 西乌珠穆沁旗| 茌平县| 开原市| 施秉县| 瓮安县| 乐至县| 泽州县| 郴州市| 乌拉特中旗| 吉林省| 遂宁市| 河间市| 泰安市| 兴义市| 昌图县| 新巴尔虎右旗| 石嘴山市| SHOW| 桓仁| 临汾市| 衡水市| 洛浦县| 民勤县| 长治市| 辽中县| 中超| 韩城市| 昆明市| 双牌县| 乃东县| 文登市| 明星| 铜川市| 禹州市| 华安县|