Datasets
The Dataset classes define the data model behind Open Targets Gentropy. Every class inherits from the Dataset
class and contains a dataframe with a predefined schema that can be found in the respective classes.
gentropy.dataset.dataset.Dataset
dataclass
¶
Bases: ABC
Open Targets Gentropy Dataset.
Dataset
is a wrapper around a Spark DataFrame with a predefined schema. Schemas for each child dataset are described in the schemas
module.
Source code in src/gentropy/dataset/dataset.py
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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
|
df: DataFrame
property
writable
¶
Dataframe included in the Dataset.
Returns:
Name | Type | Description |
---|---|---|
DataFrame |
DataFrame
|
Dataframe included in the Dataset |
schema: StructType
property
¶
Dataframe expected schema.
Returns:
Name | Type | Description |
---|---|---|
StructType |
StructType
|
Dataframe expected schema |
coalesce(num_partitions: int, **kwargs: Any) -> Self
¶
Coalesce the DataFrame included in the Dataset.
Coalescing is efficient for decreasing the number of partitions because it avoids a full shuffle of the data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
num_partitions |
int
|
Number of partitions to coalesce to |
required |
**kwargs |
Any
|
Arguments to pass to the coalesce method |
{}
|
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
Coalesced Dataset |
Source code in src/gentropy/dataset/dataset.py
214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
|
drop_infinity_values(*cols: str) -> Self
¶
Drop infinity values from Double typed column.
Infinity type reference - https://spark.apache.org/docs/latest/sql-ref-datatypes.html#floating-point-special-values The implementation comes from https://stackoverflow.com/questions/34432998/how-to-replace-infinity-in-pyspark-dataframe
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*cols |
str
|
names of the columns to check for infinite values, these should be of DoubleType only! |
()
|
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
Dataset after removing infinite values |
Source code in src/gentropy/dataset/dataset.py
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
|
filter(condition: Column) -> Self
¶
Creates a new instance of a Dataset with the DataFrame filtered by the condition.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
condition |
Column
|
Condition to filter the DataFrame |
required |
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
Filtered Dataset |
Source code in src/gentropy/dataset/dataset.py
103 104 105 106 107 108 109 110 111 112 113 114 |
|
from_parquet(session: Session, path: str | list[str], **kwargs: bool | float | int | str | None) -> Self
classmethod
¶
Reads parquet into a Dataset with a given schema.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
session |
Session
|
Spark session |
required |
path |
str | list[str]
|
Path to the parquet dataset |
required |
**kwargs |
bool | float | int | str | None
|
Additional arguments to pass to spark.read.parquet |
{}
|
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
Dataset with the parquet file contents |
Raises:
Type | Description |
---|---|
ValueError
|
Parquet file is empty |
Source code in src/gentropy/dataset/dataset.py
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 |
|
get_schema() -> StructType
abstractmethod
classmethod
¶
Abstract method to get the schema. Must be implemented by child classes.
Returns:
Name | Type | Description |
---|---|---|
StructType |
StructType
|
Schema for the Dataset |
Source code in src/gentropy/dataset/dataset.py
67 68 69 70 71 72 73 74 75 |
|
persist() -> Self
¶
Persist in memory the DataFrame included in the Dataset.
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
Persisted Dataset |
Source code in src/gentropy/dataset/dataset.py
196 197 198 199 200 201 202 203 |
|
repartition(num_partitions: int, **kwargs: Any) -> Self
¶
Repartition the DataFrame included in the Dataset.
Repartitioning creates new partitions with data that is distributed evenly.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
num_partitions |
int
|
Number of partitions to repartition to |
required |
**kwargs |
Any
|
Arguments to pass to the repartition method |
{}
|
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
Repartitioned Dataset |
Source code in src/gentropy/dataset/dataset.py
229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
|
unpersist() -> Self
¶
Remove the persisted DataFrame from memory.
Returns:
Name | Type | Description |
---|---|---|
Self |
Self
|
Unpersisted Dataset |
Source code in src/gentropy/dataset/dataset.py
205 206 207 208 209 210 211 212 |
|
update_quality_flag(qc: Column, flag_condition: Column, flag_text: Enum) -> Column
staticmethod
¶
Update the provided quality control list with a new flag if condition is met.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
qc |
Column
|
Array column with the current list of qc flags. |
required |
flag_condition |
Column
|
This is a column of booleans, signing which row should be flagged |
required |
flag_text |
Enum
|
Text for the new quality control flag |
required |
Returns:
Name | Type | Description |
---|---|---|
Column |
Column
|
Array column with the updated list of qc flags. |
Source code in src/gentropy/dataset/dataset.py
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
|
validate_schema() -> None
¶
Validate DataFrame schema against expected class schema.
Raises:
Type | Description |
---|---|
ValueError
|
DataFrame schema is not valid |
Source code in src/gentropy/dataset/dataset.py
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 |
|