Pandas Dataframe Algorithms
Pandas Dataframes
Pandas dataframes are obviously not going to scale as well as our Spark and SQL Algorithms, but for 'moderate' sized data these algorithms provide some nice functionality.
Pandas Dataframe Algorithms
Workbench has a growing set of algorithms and data processing tools for Pandas Dataframes. In general these algorithm will take a dataframe as input and give you back a dataframe with additional columns.
FeatureSpaceProximity
Bases: Proximity
Proximity computations for numeric feature spaces using Euclidean distance.
Implements the Proximity ABC contract
neighbors(id_or_ids)id-based lookupsneighbors_from_query_dfnovel-input lookups (query_df must contain the same feature columns this model was built with)
The distance column in results is standardized Euclidean distance (raw sklearn
NearestNeighbors output). For visualization, call project_2d() explicitly.
Source code in src/workbench/algorithms/dataframe/feature_space_proximity.py
__init__(df, id_column, features, target=None, include_all_columns=False)
Initialize the FeatureSpaceProximity class.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
DataFrame containing data for neighbor computations. |
required |
id_column
|
str
|
Name of the column used as the identifier. |
required |
features
|
List[str]
|
List of feature column names to be used for neighbor computations. |
required |
target
|
Optional[str]
|
Name of the target column. Defaults to None. |
None
|
include_all_columns
|
bool
|
Include all DataFrame columns in neighbor results. Defaults to False. |
False
|
Source code in src/workbench/algorithms/dataframe/feature_space_proximity.py
project_2d()
Project the numeric features to 2D for visualization (UMAP).
Returns the reference DataFrame with 'x' / 'y' columns added.
Source code in src/workbench/algorithms/dataframe/feature_space_proximity.py
FingerprintProximity
Bases: Proximity
Proximity computations using Tanimoto similarity on molecular fingerprints.
Implements the Proximity ABC contract
neighbors(id_or_ids)id-based lookupsneighbors_from_query_dfnovel-input lookups (query_df needs a 'smiles' or 'fingerprint' column)
Supports both binary and count fingerprints (auto-detected): - Binary: uses Jaccard distance (equivalent to 1 - Tanimoto for binary vectors) - Count: uses Ruzicka distance (weighted Tanimoto for count vectors), computed on-the-fly via sparse operations — supports novel queries and scales to large N.
Result DataFrames include a similarity = 1 - distance column as a
FingerprintProximity-specific extra (in addition to the canonical distance).
Source code in src/workbench/algorithms/dataframe/fingerprint_proximity.py
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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 | |
__init__(df, id_column, fingerprint_column=None, target=None, include_all_columns=False, radius=2, n_bits=2048)
Initialize FingerprintProximity for Tanimoto similarity on molecular fingerprints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
DataFrame containing fingerprints or SMILES. |
required |
id_column
|
str
|
Name of the column used as an identifier. |
required |
fingerprint_column
|
Optional[str]
|
Name of the column containing fingerprints (bit strings). If None, looks for existing "fingerprint" column or computes from SMILES. |
None
|
target
|
Optional[str]
|
Name of the target column. Defaults to None. |
None
|
include_all_columns
|
bool
|
Include all DataFrame columns in neighbor results. Defaults to False. |
False
|
radius
|
int
|
Radius for Morgan fingerprint computation (default: 2). |
2
|
n_bits
|
int
|
Number of bits for fingerprint (default: 2048). |
2048
|
Source code in src/workbench/algorithms/dataframe/fingerprint_proximity.py
neighbors(id_or_ids, n_neighbors=5, min_similarity=None, include_self=True)
Return neighbors for ID(s) already in the reference dataset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
id_or_ids
|
Single ID or list of IDs to look up |
required | |
n_neighbors
|
Optional[int]
|
Number of neighbors to return (default: 5, ignored if min_similarity is set) |
5
|
min_similarity
|
Optional[float]
|
If provided, find all neighbors with Tanimoto similarity >= this value (0-1) |
None
|
include_self
|
bool
|
Whether to include self in results (default: True) |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with columns: id_column, neighbor_id, similarity, [target], [in_model], |
DataFrame
|
and any other passthrough columns. |
Source code in src/workbench/algorithms/dataframe/fingerprint_proximity.py
neighbors_from_query_df(query_df, n_neighbors=5, min_similarity=None)
Return neighbors for novel queries not in the reference dataset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
query_df
|
DataFrame
|
DataFrame with either a 'smiles' or 'fingerprint' column. If a 'query_id' column is present it's used to label results; otherwise positional indices are used. |
required |
n_neighbors
|
int
|
Number of neighbors to return (default: 5, ignored if min_similarity is set) |
5
|
min_similarity
|
Optional[float]
|
If provided, find all neighbors with Tanimoto similarity >= this value (0-1) |
None
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with columns: query_id, neighbor_id, similarity, [target], [in_model]. |
DataFrame
|
Queries whose SMILES couldn't be parsed by RDKit are dropped with a |
DataFrame
|
warning — their rows simply don't appear in the result. Upstream |
DataFrame
|
consumers (residual_features._aggregate) reindex against the full |
DataFrame
|
input id list so missing queries surface as NaN rows there. |
Source code in src/workbench/algorithms/dataframe/fingerprint_proximity.py
project_2d()
Project the fingerprint matrix to 2D for visualization using UMAP.
For count fingerprints: lazily materializes the full N×N Ruzicka distance matrix for UMAP's precomputed-metric path. Memory cost is O(N²) — transient. For binary fingerprints: uses Jaccard distance directly on the fingerprint matrix.
Returns the reference DataFrame with 'x' / 'y' columns added.
Note: Projection2D is imported lazily so the module loads in script bundles that don't have UMAP / workbench's projection helper installed.
Source code in src/workbench/algorithms/dataframe/fingerprint_proximity.py
Projection2D
Perform Dimensionality Reduction on a DataFrame using TSNE, MDS, PCA, or UMAP.
Source code in src/workbench/algorithms/dataframe/projection_2d.py
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 | |
__init__()
fit_transform(input_df, features=None, feature_matrix=None, metric='euclidean', projection='UMAP')
Fit and transform a DataFrame using the selected dimensionality reduction method.
This method creates a copy of the input DataFrame, processes the specified features for normalization and projection, and returns a new DataFrame with added 'x' and 'y' columns containing the projected 2D coordinates.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_df
|
DataFrame
|
The DataFrame containing features to project. |
required |
features
|
list
|
List of feature column names. If None, numeric columns are auto-selected. |
None
|
feature_matrix
|
ndarray
|
Pre-computed feature matrix. If provided, features is ignored and no scaling is applied (caller is responsible for appropriate preprocessing). |
None
|
metric
|
str
|
Distance metric for UMAP (e.g., 'euclidean', 'jaccard'). Default 'euclidean'. |
'euclidean'
|
projection
|
str
|
The projection to use ('UMAP', 'TSNE', 'MDS' or 'PCA'). Default 'UMAP'. |
'UMAP'
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
pd.DataFrame: A new DataFrame (a copy of input_df) with added 'x' and 'y' columns. |
Source code in src/workbench/algorithms/dataframe/projection_2d.py
resolve_coincident_points(df)
staticmethod
Resolve coincident points using random jitter
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
DataFrame with x and y coordinates. |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
pd.DataFrame: DataFrame with resolved coincident points |
Source code in src/workbench/algorithms/dataframe/projection_2d.py
Questions?

The SuperCowPowers team is happy to answer any questions you may have about AWS and Workbench. Please contact us at workbench@supercowpowers.com or on chat us up on Discord