guidepost 0.2.17__tar.gz → 0.2.18__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {guidepost-0.2.17/guidepost.egg-info → guidepost-0.2.18}/PKG-INFO +1 -1
- {guidepost-0.2.17 → guidepost-0.2.18}/guidepost/guidepost.py +2 -2
- guidepost-0.2.18/guidepost/version.py +2 -0
- {guidepost-0.2.17 → guidepost-0.2.18/guidepost.egg-info}/PKG-INFO +1 -1
- guidepost-0.2.17/guidepost/version.py +0 -2
- {guidepost-0.2.17 → guidepost-0.2.18}/LICENSE +0 -0
- {guidepost-0.2.17 → guidepost-0.2.18}/MANIFEST.in +0 -0
- {guidepost-0.2.17 → guidepost-0.2.18}/README.md +0 -0
- {guidepost-0.2.17 → guidepost-0.2.18}/guidepost/__init__.py +0 -0
- {guidepost-0.2.17 → guidepost-0.2.18}/guidepost/guidepost.js +0 -0
- {guidepost-0.2.17 → guidepost-0.2.18}/guidepost.egg-info/SOURCES.txt +0 -0
- {guidepost-0.2.17 → guidepost-0.2.18}/guidepost.egg-info/dependency_links.txt +0 -0
- {guidepost-0.2.17 → guidepost-0.2.18}/guidepost.egg-info/requires.txt +0 -0
- {guidepost-0.2.17 → guidepost-0.2.18}/guidepost.egg-info/top_level.txt +0 -0
- {guidepost-0.2.17 → guidepost-0.2.18}/pyproject.toml +0 -0
- {guidepost-0.2.17 → guidepost-0.2.18}/setup.cfg +0 -0
- {guidepost-0.2.17 → guidepost-0.2.18}/setup.py +0 -0
- {guidepost-0.2.17 → guidepost-0.2.18}/tutorials/__init__.py +0 -0
|
@@ -90,9 +90,9 @@ class Guidepost(anywidget.AnyWidget):
|
|
|
90
90
|
if(o_df.shape[0]>250_000):
|
|
91
91
|
if(not supress_warnings):
|
|
92
92
|
if warn_supported_version:
|
|
93
|
-
warnings.warn("Your dataframe is very large. You may experience performance issues. Consider subsampling or reducing the data down to below 200,000 rows to enhance performance."
|
|
93
|
+
warnings.warn("Your dataframe is very large. You may experience performance issues. Consider subsampling or reducing the data down to below 200,000 rows to enhance performance.", skip_file_prefixes=_warn_skips)
|
|
94
94
|
else:
|
|
95
|
-
print("Warning: Your dataframe is very large. You may experience performance issues. Consider subsampling or reducing the data down to below 200,000 rows to enhance performance."
|
|
95
|
+
print("Warning: Your dataframe is very large. You may experience performance issues. Consider subsampling or reducing the data down to below 200,000 rows to enhance performance.")
|
|
96
96
|
|
|
97
97
|
|
|
98
98
|
self.vis_data = o_df.to_dict()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|