You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[`DataFrame.astype`](dataframe.astype.md)| Cast a pandas object to a specified dtype `dtype`. |
27
27
| :--- | :--- |
28
-
|[`DataFrame.copy`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.copy.html#pandas.DataFrame.copy)| Make a copy of this object’s indices and data. |
28
+
|[`DataFrame.copy`](danfo.dataframe.copy.md)| Make a copy of this object’s indices and data. |
29
29
30
30
### Indexing, iteration
31
31
32
-
|[`DataFrame.head`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.head.html#pandas.DataFrame.head)| Return the first n rows |
32
+
|[`DataFrame.head`](danfo.dataframe.head.md)| Return the first n rows |
33
33
| :--- | :--- |
34
34
|[`DataFrame.loc`](danfo.dataframe.loc.md)| Access a group of rows and columns by label\(s\) or a boolean array. |
35
35
|[`DataFrame.iloc`](danfo.dataframe.iloc.md)| Purely integer-location based indexing for selection by position. |
|[`DataFrame.apply`](danfo.dataframe.apply.md)| Apply a function along an axis of the DataFrame. |
58
58
| :--- | :--- |
59
-
|[`DataFrame.groupby`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.groupby.html#pandas.DataFrame.groupby)| Group DataFrame using a mapper or by a Series of columns. |
59
+
|[`DataFrame.groupby`](../groupby/)| Group DataFrame using a mapper or by a Series of columns. |
60
60
|[`DataFrame.map`](../series/series.map.md)| Map a function on Object along an axis to DataFrame |
|[`DataFrame.drop`](dataframe.drop.md)| Drop specified labels from rows or columns. |
89
-
|[`DataFrame.head`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.head.html#pandas.DataFrame.head)| Return the first n rows. |
90
-
|[`DataFrame.rename`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.rename.html#pandas.DataFrame.rename)| Alter axes labels. |
89
+
|[`DataFrame.head`](danfo.dataframe.head.md)| Return the first n rows. |
90
+
|[`DataFrame.rename`](dataframe.rename.md)| Alter axes labels. |
91
91
|[`DataFrame.reset_index`](dataframe.reset_index.md)| Reset the index of a DataFrame |
92
92
|[`DataFrame.sample`](danfo.dataframe.sample.md)| Return a random sample of items from an axis of object. |
93
-
|[`DataFrame.set_index`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.set_index.html#pandas.DataFrame.set_index)| Set the DataFrame index using existing columns. |
93
+
|[`DataFrame.set_index`](dataframe.set_index.md)| Set the DataFrame index using existing columns. |
94
94
|[`DataFrame.tail`](danfo.dataframe.tail.md)| Return the last n rows. |
|[`DataFrame.sort_values`](dataframe.sort_values.md)| Sort by the values along either axis. |
110
110
|[`DataFrame.T`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.T.html#pandas.DataFrame.T)| Return transpose of DataFrame |
111
-
|[`DataFrame.transpose`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.transpose.html#pandas.DataFrame.transpose)| Transpose index and columns. |
112
111
113
112
### Combining / comparing / joining / merging
114
113
115
114
|||
116
115
| :--- | :--- |
117
116
|[`DataFrame.addColumn`](danfo.dataframe.addcolumn.md)| Add new columns to a DataFrame. |
|[`DataFrame.merge`](../general-functions/danfo.merge.md)| Merge DataFrame or named Series objects with a database-style join. |
122
119
123
120
### Plotting
124
121
125
-
`DataFrame.plot` exposes different plot methods that work in the browser. All plots are compatible with Plotly API.
126
-
127
-
|[`DataFrame.plot`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.plot.html#pandas.DataFrame.plot)| DataFrame plotting accessor and method |
128
-
| :--- | :--- |
129
-
122
+
`Series.plot` is both a callable method and a namespace attribute for specific plotting methods of the form `Series.plot.<kind>`.
130
123
131
124
|||
132
125
| :--- | :--- |
133
-
|[`DataFrame.plot.bar`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.plot.bar.html#pandas.DataFrame.plot.bar)| Vertical bar plot. |
134
-
|[`DataFrame.plot.box`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.plot.box.html#pandas.DataFrame.plot.box)| Make a box plot of the DataFrame columns. |
135
-
|[`DataFrame.plot.density`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.plot.density.html#pandas.DataFrame.plot.density)| Generate Kernel Density Estimate plot using Gaussian kernels. |
136
-
|[`DataFrame.plot.hist`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.plot.hist.html#pandas.DataFrame.plot.hist)| Draw one histogram of the DataFrame’s columns. |
137
-
|[`DataFrame.plot.kde`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.plot.kde.html#pandas.DataFrame.plot.kde)| Generate Kernel Density Estimate plot using Gaussian kernels. |
138
-
|[`DataFrame.plot.line`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.plot.line.html#pandas.DataFrame.plot.line)| Plot Series or DataFrame as lines. |
139
-
|[`DataFrame.plot.pie`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.plot.pie.html#pandas.DataFrame.plot.pie)| Generate a pie plot. |
140
-
|[`DataFrame.plot.scatter`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.plot.scatter.html#pandas.DataFrame.plot.scatter)| Create a scatter plot with varying marker point size and color. |
126
+
|[DataFrame.plot.bar](../plotting/bar-charts.md)| Vertical bar plot. |
127
+
|[`DataFrame.plot.box`](../plotting/box-plots.md)| Make a box plot of the DataFrame columns. |
128
+
|[`DataFrame.plot.violin`](../plotting/box-plots.md)| Make a violin plot of the DataFrame columns. |
129
+
|[`DataFrame.plot.hist`](../plotting/histograms.md)| Draw one histogram of the DataFrame’s columns. |
130
+
|[`DataFrame.plot.scatter`](../plotting/scatter-plots.md)| Generate Kernel Density Estimate plot using Gaussian kernels. |
131
+
|[`DataFrame.plot.line`](../plotting/line-charts.md)| Plot Series or DataFrame as lines. |
132
+
|[`DataFrame.plot.pie`](../plotting/pie-charts.md)| Generate a pie plot. |
133
+
|[`Timeseries Plots`](../plotting/timeseries-plots.md)| Time series plots |
134
+
|[`Table`](../plotting/tables.md)| Display Series as Interactive table in Div |
141
135
142
136
### Serialization / IO / conversion
143
137
144
138
|||
145
139
| :--- | :--- |
146
140
|[`DataFrame.to_csv`](dataframe.to_csv.md)| Write object to a comma-separated values \(csv\) file. |
147
141
|[`DataFrame.to_json`](dataframe.to_json.md)| Convert the object to a JSON string. |
148
-
|[`DataFrame.to_table`]()| Render a DataFrame as an HTML table. |
149
-
|[`DataFrame.toString`](../series/series.tostring.md)| Render a DataFrame to a console-friendly tabular output. |
150
-
|[`DataFrame.print`](dataframe.print.md)| Display a DataFrame to a console friendly output. |
0 commit comments