dataframe
PtDataFrame
Bases: AbstractPtDataFrame
A class representing a Pandas DataFrame with additional functionality.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
pd.DataFrame
|
The Pandas DataFrame to be encapsulated. Defaults to an empty DataFrame. |
pd.DataFrame()
|
Source code in pypdtools\core\dataframe.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
|
df: pd.DataFrame
property
Get the encapsulated Pandas DataFrame.
Returns:
Type | Description |
---|---|
pd.DataFrame
|
pd.DataFrame: The encapsulated Pandas DataFrame. |
__add__(other)
Concatenate the PtDataFrame with another PtDataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
PtDataFrame
|
The PtDataFrame to concatenate. |
required |
Returns:
Name | Type | Description |
---|---|---|
PtDataFrame |
PtDataFrame
|
The concatenated PtDataFrame. |
Source code in pypdtools\core\dataframe.py
__aenter__()
async
Asynchronous version of enter(). Enter the context manager and return the encapsulated Pandas DataFrame.
Returns:
Type | Description |
---|---|
pd.DataFrame
|
pd.DataFrame: The encapsulated Pandas DataFrame. |
Source code in pypdtools\core\dataframe.py
__aexit__(exc_type, exc_val, exc_tb)
async
Asynchronous version of exit(). Exit the context manager.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
exc_type |
type
|
The exception type, if any. |
required |
exc_val |
Exception
|
The exception instance, if any. |
required |
exc_tb |
traceback
|
The traceback, if any. |
required |
Source code in pypdtools\core\dataframe.py
__aiter__()
Asynchronous iterator support for the PtDataFrame.
Returns:
Name | Type | Description |
---|---|---|
Iterator |
Iterator
|
An asynchronous iterator. |
Source code in pypdtools\core\dataframe.py
__anext__()
async
Asynchronous iterator support for the PtDataFrame.
Returns:
Name | Type | Description |
---|---|---|
Awaitable |
Awaitable
|
An awaitable object. |
Source code in pypdtools\core\dataframe.py
__await__()
Awaitable support for the PtDataFrame.
Returns:
Name | Type | Description |
---|---|---|
Awaitable |
Awaitable
|
An awaitable object. |
__enter__()
Enter the context manager and return the encapsulated Pandas DataFrame.
Returns:
Type | Description |
---|---|
pd.DataFrame
|
pd.DataFrame: The encapsulated Pandas DataFrame. |
__exit__(exc_type, exc_val, exc_tb)
Exit the context manager.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
exc_type |
type
|
The exception type, if any. |
required |
exc_val |
Exception
|
The exception instance, if any. |
required |
exc_tb |
traceback
|
The traceback, if any. |
required |
Source code in pypdtools\core\dataframe.py
__iadd__(other)
In-place concatenation of the PtDataFrame with another PtDataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
PtDataFrame
|
The PtDataFrame to concatenate. |
required |
Returns:
Name | Type | Description |
---|---|---|
PtDataFrame |
PtDataFrame
|
The concatenated PtDataFrame. |
Source code in pypdtools\core\dataframe.py
__init__(df=pd.DataFrame())
Initialize the PtDataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
pd.DataFrame
|
The Pandas DataFrame to be encapsulated. Defaults to an empty DataFrame. |
pd.DataFrame()
|
Source code in pypdtools\core\dataframe.py
__iter__()
Iterator
support for the PtDataFrame.
Returns:
Iterator: An iterator.
__len__()
Return the length of the PtDataFrame.
Returns:
Name | Type | Description |
---|---|---|
int |
int
|
The length of the PtDataFrame. |
__next__()
Iterator support for the PtDataFrame.
Returns:
Name | Type | Description |
---|---|---|
Any |
Any
|
An item from the PtDataFrame. |
__repr__()
Return a string representation of the PtDataFrame.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A string representation of the PtDataFrame. |
__str__()
Return a string representation of the PtDataFrame.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A string representation of the PtDataFrame. |
col_to_list(col_name, drop_duplicates=True)
Extract a column as a list from the PtDataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
col_name |
str
|
The name of the column to extract. |
required |
drop_duplicates |
bool
|
Whether to drop duplicate values. Defaults to True. |
True
|
Returns:
Name | Type | Description |
---|---|---|
List |
List
|
The column values as a list. |
Source code in pypdtools\core\dataframe.py
reduce(df_list)
classmethod
Reduce a list of PtDataFrame objects into a single PtDataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df_list |
List[PtDataFrame]
|
The list of PtDataFrame objects to reduce. |
required |
Returns:
Name | Type | Description |
---|---|---|
PtDataFrame |
PtDataFrame
|
The reduced PtDataFrame. |