jupyterlab_tabular_data_viewer_extension 1.2.13 → 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 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 using IQR×1.5; string: most common value/length stats; date: earliest/latest dates). Copy statistics as JSON with one click
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 (IQR×1.5): ${this._formatNumber(this._stats.outlier_count)} (${this._stats.outlier_percentage}%)`);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyterlab_tabular_data_viewer_extension",
3
- "version": "1.2.13",
3
+ "version": "1.2.14",
4
4
  "description": "Jupyterlab extension to browse tabular data files (Parquet, Excel, CSV, TSV) with filtering and sorting capabilities",
5
5
  "keywords": [
6
6
  "jupyter",
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 (IQR×1.5): ${this._formatNumber(this._stats.outlier_count)} (${this._stats.outlier_percentage}%)`);
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('');