jupyterlab_tabular_data_viewer_extension 1.2.12 → 1.2.14
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.
- package/README.md +1 -1
- package/lib/modal.js +1 -1
- package/package.json +1 -1
- package/src/modal.ts +1 -1
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@ View and browse Parquet, Excel, CSV, and TSV files directly in JupyterLab. Doubl
|
|
|
50
50
|
- Multiple filters work together to narrow down results
|
|
51
51
|
|
|
52
52
|
**Additional features:**
|
|
53
|
-
- Column statistics modal - View comprehensive statistics including data type, row counts, null values, unique counts, and type-specific metrics (numeric: min/max/mean/median/std dev/outliers
|
|
53
|
+
- Column statistics modal - View comprehensive statistics including data type, row counts, null values, unique counts, and type-specific metrics (numeric: min/max/mean/median/std dev/outliers; string: most common value/length stats; date: earliest/latest dates). Copy statistics as JSON with one click
|
|
54
54
|
- Right-click context menu on rows to copy data as JSON
|
|
55
55
|
- Configurable file type support via Settings - Enable/disable Parquet, Excel, or CSV/TSV handling
|
|
56
56
|
- All features work seamlessly across all supported file formats
|
package/lib/modal.js
CHANGED
|
@@ -82,7 +82,7 @@ export class ColumnStatsModal extends Widget {
|
|
|
82
82
|
items.push(`Std Dev: ${this._formatNumber(this._stats.std_dev)}`);
|
|
83
83
|
}
|
|
84
84
|
if (this._stats.outlier_count !== undefined) {
|
|
85
|
-
items.push(`Outliers
|
|
85
|
+
items.push(`Outliers: ${this._formatNumber(this._stats.outlier_count)} (${this._stats.outlier_percentage}%)`);
|
|
86
86
|
}
|
|
87
87
|
numericList.innerHTML = items.map(item => `<li>${item}</li>`).join('');
|
|
88
88
|
numericSection.appendChild(numericList);
|
package/package.json
CHANGED
package/src/modal.ts
CHANGED
|
@@ -95,7 +95,7 @@ export class ColumnStatsModal extends Widget {
|
|
|
95
95
|
items.push(`Std Dev: ${this._formatNumber(this._stats.std_dev)}`);
|
|
96
96
|
}
|
|
97
97
|
if (this._stats.outlier_count !== undefined) {
|
|
98
|
-
items.push(`Outliers
|
|
98
|
+
items.push(`Outliers: ${this._formatNumber(this._stats.outlier_count)} (${this._stats.outlier_percentage}%)`);
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
numericList.innerHTML = items.map(item => `<li>${item}</li>`).join('');
|