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.
Proximity & Neighbors
Nearest-neighbor lookups over compounds — in fingerprint space (Tanimoto over SMILES/fingerprints) or feature space (standardized Euclidean over numeric descriptors). Use it to find analogs, flag activity cliffs, and probe a model's applicability domain.
Two entry points:
# Precomputed — the proximity a trained model already carries (or None)
prox = model.prox("fingerprint")
# Fresh — built over a FeatureSet (the pre-model, anomaly-hunting path)
prox = fs.prox("fingerprint", target="logS")
prox = fs.prox("features", feature_list=["mollogp", "tpsa"], target="logS")
space is "fingerprint" or "features", and prox.space reports which one you got. Passing a target also enables target-aware analysis (ActivityLandscape, ResidualFeatures) and adds neighbor target values to the results.
Query neighbors the same way on either backend:
prox.neighbors(compound_id, n_neighbors=5, include_self=False) # rows already in the set
prox.neighbors_from_query_df(query_df, n_neighbors=5) # novel rows
Fingerprint results carry a similarity column (Tanimoto 0–1; threshold with min_similarity); feature-space results carry a distance column (threshold with radius).
Reference
Proximity ABC: a swappable contract for neighbor-lookup backends.
Concrete subclasses (FingerprintProximity, FeatureSpaceProximity) provide different similarity definitions but share this query contract so downstream analysis classes (ActivityLandscape, ApplicabilityDomain) can be polymorphic over the backend.
The ABC enforces
- Both id-based and novel-query lookups
- A canonical neighbor-result DataFrame shape: id, neighbor_id, distance, [target], [in_model], plus any backend-specific extras (e.g. similarity)
- Shared reference attributes (id_column, target, df) for downstream consumption
What the ABC deliberately does NOT enforce
- The distance metric (Jaccard / Ruzicka / Euclidean — subclass detail)
- The index data structure (ball_tree / sparse on-the-fly / KDTree — subclass detail)
- The "novel query" input representation — query_df is structural; each subclass declares its own column requirements in the docstring
Proximity
Bases: ABC
Abstract base for compound proximity backends.
Source code in src/workbench/algorithms/dataframe/proximity.py
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 263 264 265 266 267 268 269 270 | |
space
abstractmethod
property
The space this proximity operates in: "fingerprint" or "feature".
__init__(df, id_column, features, target=None, include_all_columns=False)
Initialize the Proximity class.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
DataFrame containing the reference set for neighbor computations. |
required |
id_column
|
str
|
Name of the column used as the identifier. |
required |
features
|
List[str]
|
List of feature column names 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/proximity.py
neighbors(id_or_ids, n_neighbors=5, radius=None, include_self=True)
Look up neighbors for IDs already in the reference set.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
id_or_ids
|
Union[str, int, List[Union[str, int]]]
|
Single ID or list of IDs to look up. |
required |
n_neighbors
|
Optional[int]
|
Number of neighbors to return (ignored if radius is set). |
5
|
radius
|
Optional[float]
|
If provided, find all neighbors within this distance. |
None
|
include_self
|
bool
|
Whether to include self in results. |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with columns: id_column, neighbor_id, distance, [target], |
DataFrame
|
[in_model], plus any backend-specific extras. |
Source code in src/workbench/algorithms/dataframe/proximity.py
neighbors_from_query_df(query_df, n_neighbors=5, radius=None)
Look up neighbors for novel queries (not yet in the reference set).
Each subclass documents the required columns of query_df
- FingerprintProximity: 'smiles' column (or precomputed 'fingerprint')
- FeatureSpaceProximity: the feature columns the model was built with
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
query_df
|
DataFrame
|
Novel-query DataFrame. If a 'query_id' column is present it's used to label results; otherwise positional indices are used. |
required |
n_neighbors
|
Optional[int]
|
Number of neighbors to return (ignored if radius is set). |
5
|
radius
|
Optional[float]
|
If provided, find all neighbors within this distance. |
None
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with columns: query_id, neighbor_id, distance, [target], |
DataFrame
|
[in_model], plus any backend-specific extras. |
Source code in src/workbench/algorithms/dataframe/proximity.py
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 473 474 | |
__init__(df, id_column, fingerprint_column=None, target=None, include_all_columns=False, radius=2, n_bits=4096)
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: 4096). |
4096
|
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
|
Union[str, int, List[Union[str, int]]]
|
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