Data Analysis in the Wild: Benchmarking Large Language Models Against Real-World Data Complexities
Reviewed by Pith T0 review T1 audit T2 compute T3 formal T4 kernel 2026-07-08 04:13 UTCglm-5.2pith:LRAN53FVrecord.jsonopen to challenge →
The pith
Top LLMs score below 0.4 on real-world table QA benchmark
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The core discovery is that when LLMs are tested against data analysis tasks that mirror real-world complexity, their performance drops to levels far below what existing benchmarks suggest. The paper constructs this demonstration by building a benchmark from governmental open data with characteristics that existing benchmarks lack simultaneously: large tables, multiple tables per dataset, metadata, external knowledge, decomposable questions, and exploratory insight generation. The key empirical finding is that the best models achieve below 0.4 Whole accuracy on Table QA and below 0.5 Summary-level score on Table Insight even with agentic support, and that two specific capabilities are missing
What carries the argument
DataGovBench, a benchmark with two tasks (Table QA and Table Insight) built from 178 governmental open datasets averaging 210K rows, featuring multi-tabular datasets, metadata, external knowledge, decomposable questions, and ground-truth insights extracted from official expert reports. The evaluation uses an Answer Agent (with feature type-specific table serialization, coding with self-correction, and reflection modules) and an Insight Agent (with a DAG-based question-answer-insight exploration cycle), evaluated against ground truth via exact match for text answers, MLLM-as-judge for visualizations, and GPT-4o-based scoring for insights.
If this is right
- The gap between benchmark performance and real-world readiness is large enough that deploying LLM-based data analysis systems on governmental or enterprise data without substantial human oversight carries significant risk of incorrect calculations and misleading conclusions.
- The finding that feature type-specific table serialization outperforms raw row provision suggests that the field should invest in better compact table representations rather than simply scaling context windows.
- The identification of narrative-level reasoning as a missing capability implies that current code-generation approaches can compute values but cannot reliably construct the analytical argument that makes those values meaningful, pointing to a need for systems that bridge numerical computation and narrative synthesis.
- The poor performance of SQL relative to Python code generation on these tasks challenges the dominance of text-to-SQL as the paradigm for table question answering when tasks involve complex data transformations, multiple tables, and visualization outputs.
Where Pith is reading between the lines
- The benchmark's ground truth for Table QA is generated by LLMs and human-verified, and the ground truth for Table Insight is partly extracted using LLMs, which means the evaluation instrument itself is subject to the same class of errors the benchmark is designed to expose. The absolute scores may be noisy, though the relative ranking of models is likely more robust.
- With only 6 datasets for Table Insight and 211 QA pairs for Table QA, the benchmark is small relative to existing alternatives. The performance gaps may partly reflect the difficulty of specific datasets rather than a systematic deficiency, and scaling the benchmark would strengthen the claims.
- The moderate correlation between human judgment and metric scores for Table Insight (Pearson 0.669, Spearman 0.663) means that the Insight-level scores should be interpreted as approximate rankings rather than precise measurements of insight quality.
Load-bearing premise
The ground-truth answers and insights used to score models are themselves partly generated by LLMs and then human-verified, with no reported inter-annotator agreement and with LLMs used to extract insights from free-text reports, meaning the evaluation standard may contain the same kinds of errors the benchmark is designed to expose in the models it tests.
What would settle it
If a model or agent system were to achieve Whole accuracy above 0.7 on Table QA and Summary-level score above 0.7 on Table Insight on this benchmark, the central claim that current systems are far from satisfying real-world data analysis demands would be weakened, suggesting instead that the gap was an artifact of benchmark immaturity rather than a genuine capability deficit.
Figures
read the original abstract
Current benchmarks for evaluating Large Language Models (LLMs) in data analysis often fail to reflect real-world settings. They typically focus on fact retrieval from small tables and overlook the challenges of large multi-tabular datasets, external knowledge integration, and exploratory insight discovery. We introduce DataGovBench, a benchmark derived from governmental open data designed to evaluate LLMs in practical scenarios. The benchmark includes two tasks: Table QA that requires solving complex decomposable questions and producing textual answers or visualizations, and Table Insight that evaluates the ability of models to generate expert-level findings through exploratory data analysis. Comprehensive experiments with state-of-the-art LLMs, both with and without agentic frameworks, reveal significant performance gaps across both tasks. These results suggest that current LLM-based systems remain far from satisfying the demands of real-world data analytics. DataGovBench provides a challenging benchmark for advancing research on LLMs capable of both answering analytical queries and discovering insights from data. Code and sample data are available at https://github.com/SoHasegawa/datagovbench.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces DataGovBench, a benchmark for evaluating LLMs on real-world data analysis tasks, comprising two sub-tasks: Table QA (211 question sets over 178 datasets, with decomposable questions and visualization outputs) and Table Insight (exploratory insight generation over 6 datasets with expert-authored reports as ground truth). The benchmark features large multi-tabular datasets with metadata and external knowledge, addressing gaps in existing benchmarks. The authors evaluate several closed- and open-source LLMs with and without agentic frameworks (Answer Agent, Insight Agent, AgentPoirot), finding that even top models achieve low accuracy (below 0.4 Whole on Table QA, below 0.5 Summary-level on Table Insight). The paper also provides qualitative error analyses and ablation studies on the Answer Agent components.
Significance. The benchmark addresses a genuine gap: most existing table QA benchmarks use small, single-table datasets without metadata or external knowledge, and few benchmarks formalize insight generation as a primary task. The feature type-specific table serialization (§2.1, Appendix A.2) is a practical contribution for handling large tables within context limits. The human-in-the-loop QA annotation pipeline with two-stage verification is well-designed. The SQL-vs-Python comparison (Table 5) and the ablation study (Table 4) provide useful empirical signals. The qualitative error taxonomy (Figure 5) and the four-perspective insight analysis (Figure 6) are informative. Code and sample data are publicly available, which supports reproducibility.
major comments (3)
- §3.3, Table 3 (Table Insight columns): GPT-4o is used as the sole evaluator for the Table Insight task, yet GPT-4o is also one of the four evaluated closed-source models (scoring 0.292/0.345 with AgentPoirot and 0.319/0.399 with Insight Agent). This is a direct self-evaluation conflict: GPT-4o may systematically prefer its own output style over that of Claude Sonnet 4.6 or Gemini 2.5 Flash. The meta-evaluation in Appendix B.3 (Pearson 0.669, Spearman 0.663) checks whether the metric agrees with humans on relative quality of insight pairs in general, but it does not test for evaluator self-preference bias specifically — a distinct bias that would not necessarily appear in a general correlation check. Given that the Table Insight task uses only 6 datasets (Table 9), even a modest systematic bias could reorder model rankings. The paper should either (a) use a different evaluator model that,
- §3.4, Table 3 (Table Insight columns): The paper reports 5-run averaging for Table Insight but does not report per-dataset variance or per-dataset scores. With only 6 datasets, aggregate scores could mask high cross-dataset variability that would render the model rankings in Table 3 unstable. Reporting per-dataset scores (or at minimum standard deviations across datasets) is necessary for readers to assess whether the differences between, e.g., Claude Sonnet 4.6 (0.453 Summary) and Gemini 2.5 Flash (0.405 Summary) are meaningful rather than noise.
- §2.1 (Annotation of Insight): The ground-truth construction for Table Insight uses NotebookLM and Gemini 2.5 Flash to extract insights from free-text reports, introducing LLM-generated content into the ground truth that is then used to evaluate LLMs. While the paper notes manual verification of extracted insights, it does not report what fraction of extractions were modified versus accepted as-is, nor any inter-annotator agreement for this verification step. This matters because the absolute scores in Table 3 depend on ground-truth quality. The paper should report these statistics or at minimum acknowledge this as a limitation.
minor comments (8)
- §2.1 (Annotation of Question and Answer Pairs): The paper states annotators have 'expertise in data analysis' but does not report the number of annotators, their specific qualifications, or inter-annotator agreement for the QA verification stage. Adding these details would strengthen the credibility of the ground truth.
- Table 3: The open-source models are not evaluated on the Table Insight task. The paper briefly notes 'relatively low performance of open-source models on Table QA' as justification (§3.2), but including at least one open-source model on Table Insight would make the comparison more complete.
- §4.2, Figure 5: The error analysis is conducted only on Gemini 2.5 Flash with Answer Agent. It would be useful to note whether the error distribution is similar for other models, or at least to acknowledge this limitation.
- §4.3, Table 5: The SQL-vs-Python comparison excludes visualization-based QA pairs, reducing the evaluation to 145 text-based pairs. The paper should clarify what fraction of the full benchmark this represents and whether the text-only subset is representative.
- Table 11: The example comparison is informative but only shows two ground-truth insights. Including a brief note on how representative these examples are would help readers gauge generality.
- §5 (Related Works): 'extenral' should be 'external' (typo). Also, reference [1] title reads 'ntroducing claude sonnet 4.6' — should be 'Introducing'.
- §6 (Conclusion): 'difficulity' should be 'difficulty' (typo).
- The paper uses future-dated references (e.g., GPT-5.1 accessed March 2026, Claude Sonnet 4.6 accessed March 2026). If these are real, the dates are fine; if placeholder, they should be corrected.
Simulated Author's Rebuttal
We thank the referee for the thorough and constructive review. The referee correctly identifies the benchmark's contributions and raises three substantive concerns about the Table Insight evaluation methodology. We agree that all three points are valid and warrant revision. Below we address each comment point by point.
read point-by-point responses
-
Referee: §3.3, Table 3 (Table Insight columns): GPT-4o is used as the sole evaluator for the Table Insight task, yet GPT-4o is also one of the four evaluated closed-source models. This is a direct self-evaluation conflict. The meta-evaluation in Appendix B.3 checks general correlation with human judgment but does not test for evaluator self-preference bias specifically. The paper should either (a) use a different evaluator model, or (b) explicitly test for self-preference bias.
Authors: The referee is correct that using GPT-4o as both an evaluated model and the sole evaluator for Table Insight creates a potential self-evaluation conflict, and that the general correlation meta-evaluation in Appendix B.3 would not necessarily detect a systematic self-preference bias. This is a valid concern. We will address it in the revision by re-running the Table Insight evaluation with a different evaluator model (Claude Sonnet 4.6, which is also one of the evaluated models, creating a symmetric cross-evaluation setup) and reporting both sets of scores. We will also add an explicit discussion of the self-preference bias risk as a limitation. If the rankings change between the two evaluator configurations, we will report this transparently. We note that the overall conclusion—that all models score below 0.5 on Summary-level and below 0.35 on Insight-level—is unlikely to be affected, but the relative rankings among the top models could shift, and the revised paper will make this clear. revision: yes
-
Referee: §3.4, Table 3 (Table Insight columns): The paper reports 5-run averaging for Table Insight but does not report per-dataset variance or per-dataset scores. With only 6 datasets, aggregate scores could mask high cross-dataset variability that would render model rankings unstable. Reporting per-dataset scores or at minimum standard deviations across datasets is necessary.
Authors: We agree. With only 6 datasets, aggregate scores can mask important variability, and readers need per-dataset breakdowns to assess whether differences between models (e.g., Claude Sonnet 4.6 at 0.453 vs. Gemini 2.5 Flash at 0.405 on Summary-level) are meaningful. In the revision, we will add a per-dataset results table showing both Insight-level and Summary-level scores for each of the 6 datasets, along with standard deviations across datasets. This will allow readers to judge the stability of the rankings directly. revision: yes
-
Referee: §2.1 (Annotation of Insight): The ground-truth construction for Table Insight uses NotebookLM and Gemini 2.5 Flash to extract insights from free-text reports, introducing LLM-generated content into the ground truth used to evaluate LLMs. The paper does not report what fraction of extractions were modified versus accepted as-is, nor any inter-annotator agreement for this verification step.
Authors: This is a fair point. The ground-truth construction pipeline for Table Insight does involve LLM-generated content (NotebookLM for insight extraction, Gemini 2.5 Flash for summary generation), and the current manuscript does not adequately report the verification statistics. In the revision, we will add: (1) the fraction of LLM-extracted insights that were modified versus accepted as-is during manual verification, and (2) inter-annotator agreement for the verification step. We will also add an explicit acknowledgment in the limitations section that LLM-generated content is part of the ground-truth pipeline, along with a discussion of the steps taken to mitigate any resulting bias (manual verification, synthesis into standardized declarative sentences). If the inter-annotator agreement data were not systematically recorded during annotation in a form that supports a clean IAA statistic, we will state this honestly and report what verification statistics we do have. revision: partial
Circularity Check
No significant circularity: GPT-4o as both evaluated model and Table Insight evaluator is a self-evaluation concern, but the central claim (LLMs perform poorly) is not forced by construction.
specific steps
-
fitted input called prediction
[§3.3 (Table Insight evaluation) and Table 3]
"We employ GPT-4o as the evaluator by replacing LLaMA3-70b [7]. We verified that the evaluator aligns with human perception through a meta-evaluation, as shown in Appendix B.3."
GPT-4o is both one of the four evaluated closed-source models in Table 3 (scoring 0.292/0.345 with AgentPoirot, 0.319/0.399 with Insight Agent) and the sole evaluator for Table Insight. This creates a potential self-evaluation bias where GPT-4o may prefer its own output style. However, this is not circularity in the strict sense: the central claim (LLMs perform poorly, with top scores below 0.5) is not forced by construction. GPT-4o scores are not the highest among evaluated models (Claude Sonnet 4.6 scores higher), so the evaluator is not systematically favoring itself in a way that would circularly guarantee the paper's conclusion. The meta-evaluation (Pearson 0.669, Spearman 0.663) provides independent, albeit moderate, support for the evaluator's validity. This is a methodological bias
-
fitted input called prediction
[§2.1 (Annotation of Insight) and §3.3 (Table Insight evaluation)]
"If the report expresses findings in free text, we uploaded the report to NotebookLM [6] and prompted it to suggest ten insights... we then synthesized the extracted insights into a standardized set of declarative sentences, and converted the set of sentences into a summary via Gemini 2.5 Flash [4]."
The ground-truth insights and summaries for Table Insight are partly constructed using LLMs (NotebookLM, Gemini 2.5 Flash), and then LLM outputs are evaluated against this LLM-influenced ground truth using GPT-4o as evaluator. This creates a mild LLM-in-the-loop dependency. However, the ground truth originates from human-authored official reports, and the LLM is used only for extraction/summarization, not for creating the findings themselves. The central claim (poor LLM performance) is not circularly forced: if the ground truth were biased toward LLM-generated patterns, we would expect higher scores, not lower ones. The low scores (below 0.5) argue against circular reinforcement.
full rationale
The paper has two mild LLM-in-the-loop concerns: (1) GPT-4o serves as both an evaluated model and the sole Table Insight evaluator, and (2) ground-truth insights are partly extracted using LLMs. Neither reduces to circularity by construction. The central claim—that current LLMs perform poorly on real-world data analysis—is not forced by either the ground-truth construction or the evaluator choice. If anything, LLM involvement in ground-truth construction would bias scores upward, not downward, making the low scores more credible rather than less. The meta-evaluation provides independent (if moderate) support for evaluator validity. No self-citation chain is load-bearing for the central claim. The paper is substantially self-contained against external benchmarks. Score 2 reflects the methodological self-evaluation concern without rising to genuine circularity.
Axiom & Free-Parameter Ledger
free parameters (7)
- Minimum row threshold (5,000) =
5,000
- Top-10 questions per dataset =
10
- Number of LLM judges (4) =
4
- Max revision attempts (3) =
3
- Insight Agent: initial questions (3), iterations (4), total insights (12) =
3, 4, 12
- Categorical column unique value threshold (20) =
20
- Random sample size for other feature types (10) =
10
axioms (5)
- domain assumption Government open data is representative of real-world data analysis scenarios
- domain assumption LLM-generated questions, after human verification, are valid test items for evaluating LLM data analysis capability
- domain assumption Official reports accompanying datasets serve as valid ground truth for insight generation
- domain assumption GPT-4o as evaluator produces scores that align with human judgment
- domain assumption Majority consensus of 4 MLLMs is a reliable judge for visualization correctness
invented entities (3)
-
Feature type-specific table serialization
independent evidence
-
Answer Agent
independent evidence
-
Insight Agent (DAG-based)
independent evidence
Reference graph
Works this paper leans on
-
[1]
Blog Post (February 2026),https:// www.anthropic.com/news/claude-sonnet-4-6, accessed: March 5, 2026
Anthropic: ntroducing claude sonnet 4.6. Blog Post (February 2026),https:// www.anthropic.com/news/claude-sonnet-4-6, accessed: March 5, 2026
work page 2026
- [2]
-
[3]
In: International Conference on Learning Repre- sentations (2021)
Chen, W., Chang, M.W., Schlinger, E., Wang, W.Y., Cohen, W.W.: Open question answering over tables and text. In: International Conference on Learning Repre- sentations (2021)
work page 2021
-
[4]
Comanici, G., et al: Gemini 2.5: Pushing the frontier with advanced reason- ing, multimodality, long context, and next generation agentic capabilities (2025), arXiv:2507.06261
work page internal anchor Pith review Pith/arXiv arXiv 2025
-
[5]
DeepMind, G.: Introducing gemini 2.0: our new ai model for the agentic era. Blog Post (December 2024),https://blog.google/technology/google-deepmind/ google-gemini-ai-update-december-2024/, accessed: May 30, 2025
work page 2024
-
[6]
Google: Notebooklm (accessed July 10, 2025),https://notebooklm.google.com/
work page 2025
-
[7]
Grattafiori, A., et al: The llama 3 herd of models (2024), arXiv:2407.21783
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[8]
Nature645(8081), 633–638 (Sep 2025)
Guo, D., et al: Deepseek-r1 incentivizes reasoning in llms through reinforcement learning. Nature645(8081), 633–638 (Sep 2025)
work page 2025
-
[9]
In: Pro- ceedings of the 41st International Conference on Machine Learning (2024)
Hu, X., et al: Infiagent-dabench: evaluating agents on data analysis tasks. In: Pro- ceedings of the 41st International Conference on Machine Learning (2024)
work page 2024
-
[10]
Li, J., et al: Can LLM already serve as a database interface? a BIg bench for large- scale database grounded text-to-SQLs. In: Thirty-seventh Conference on Neural Information Processing Systems Datasets and Benchmarks Track (2023)
work page 2023
-
[11]
In: Proceedings of the 39th IEEE/ACM International Conference on Automated Software Engineering
Liu, L., Hasegawa, S., Sampat, S.K., Xenochristou, M., Chen, W.P., Kato, T., Kakibuchi, T., Asai, T.: Autodw: Automatic data wrangling leveraging large lan- guage models. In: Proceedings of the 39th IEEE/ACM International Conference on Automated Software Engineering. p. 2041–2052 (2024) 16 So Hasegawa et al
work page 2041
-
[12]
Majumder, B.P., Surana, H., Agarwal, D., Mishra, B.D., Meena, A., Prakhar, A., Vora, T., Khot, T., Sabharwal, A., Clark, P.: Discoverybench: Towards data-driven discovery with large language models (2024), arXiv:2407.01725
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[13]
In: Proceed- ings of the 9th Python in Science Conference
Wes McKinney: Data Structures for Statistical Computing in Python. In: Proceed- ings of the 9th Python in Science Conference. pp. 56 – 61 (2010)
work page 2010
-
[14]
MistralAI: Upgrading agentic coding capabilities with the new devstral models (accessed July 10, 2025),https://mistral.ai/news/devstral-2507
work page 2025
-
[15]
Transactions of the Association for Computational Linguistics10, 35–49 (2022)
Nan, L., et al: FeTaQA: Free-form table question answering. Transactions of the Association for Computational Linguistics10, 35–49 (2022)
work page 2022
-
[16]
Blog Post (November 2025),https://openai.com/index/gpt-5-1/, accessed: March 5, 2026
OpenAI: Gpt-5.1: A smarter, more conversational chatgpt. Blog Post (November 2025),https://openai.com/index/gpt-5-1/, accessed: March 5, 2026
work page 2025
-
[17]
OpenAI, et al: Gpt-4 technical report (2024), arXiv:2303.08774
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[18]
OpenAI, et al: Gpt-4o system card (2024), arXiv:2410.21276
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[19]
Osés Grijalba, J., Ureña-López, L.A., Martínez Cámara, E., Camacho-Collados, J.: Question answering over tabular data with DataBench: A large-scale empirical evaluation of LLMs. In: Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024). pp. 13471–13488 (May 2024)
work page 2024
-
[20]
Pasupat, P., Liang, P.: Compositional semantic parsing on semi-structured tables. In: Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Pro- cessing (Volume 1: Long Papers). pp. 1470–1480 (2015)
work page 2015
-
[21]
Qwen: Qwen3-coder: Agentic coding in the world (accessed March 6, 2026),https: //qwen.ai/blog?id=qwen3-coder
work page 2026
-
[22]
Sahu, G., Puri, A., Rodriguez, J.A., Abaskohi, A., Chegini, M., Drouin, A., Taslakian,P.,Zantedeschi,V.,Lacoste,A.,Vázquez,D.,Chapados,N.,Pal,C.,Ra- jeswar,S.,Laradji,I.H.:Insightbench:Evaluatingbusinessanalyticsagentsthrough multi-step insight generation. In: ICLR (2025)
work page 2025
-
[23]
Seo,K.,Kwon,D.,Lee,D.:MT-RAIG:Novelbenchmarkandevaluationframework for retrieval-augmented insight generation over multiple tables. In: Proceedings of the63rdAnnualMeetingoftheAssociationforComputationalLinguistics(Volume 1: Long Papers). pp. 23142–23172 (2025)
work page 2025
-
[24]
Su, A., et al: Tablegpt2: A large multimodal model with tabular data integration (2024), arXiv:2411.02059
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[25]
Gemini: A Family of Highly Capable Multimodal Models
Team, G., et al: Gemini: a family of highly capable multimodal models. arXiv preprint arXiv:2312.11805 (2023)
work page internal anchor Pith review Pith/arXiv arXiv 2023
-
[26]
Team, G., et al: Gemini 1.5: Unlocking multimodal understanding across millions of tokens of context (2024), arXiv:2403.05530
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[27]
UK Government: Data.gov.uk,https://www.data.gov.uk/, accessed: 2026-03-11
work page 2026
-
[28]
General Services Administration: Data.gov,https://www.data.gov/, ac- cessed: 2026-03-11
U.S. General Services Administration: Data.gov,https://www.data.gov/, ac- cessed: 2026-03-11
work page 2026
-
[29]
Wolf, T., Debut, L., Sanh, V., Chaumond, J., Delangue, C., Moi, A., Cistac, P., Rault, T., Louf, R., Funtowicz, M., Davison, J., Shleifer, S., von Platen, P., Ma, C., Jernite, Y., Plu, J., Xu, C., Scao, T.L., Gugger, S., Drame, M., Lhoest, Q., Rush, A.M.: Huggingface’s transformers: State-of-the-art natural language pro- cessing (2020)
work page 2020
-
[30]
Wu,J.,Yang,L.,Li,D.,Ji,Y.,Okumura,M.,Zhang,Y.:MMQA:EvaluatingLLMs with multi-table multi-hop complex questions. In: The Thirteenth International Conference on Learning Representations (2025) Data Analysis in the Wild 17
work page 2025
-
[31]
In: Proceedings of the AAAI Conference on Artificial Intelligence
Wu,X.,etal:Tablebench:Acomprehensiveandcomplexbenchmarkfortableques- tion answering. In: Proceedings of the AAAI Conference on Artificial Intelligence. vol. 39, pp. 25497–25506 (2025)
work page 2025
-
[32]
Yang, A., et al: Qwen3 technical report (2025), arXiv:2505.09388
work page internal anchor Pith review Pith/arXiv arXiv 2025
-
[33]
In: Proceedings of the 2018 Confer- ence on Empirical Methods in Natural Language Processing
Yu, T., et al: Spider: A large-scale human-labeled dataset for complex and cross- domain semantic parsing and text-to-SQL task. In: Proceedings of the 2018 Confer- ence on Empirical Methods in Natural Language Processing. pp. 3911–3921 (2018)
work page 2018
-
[34]
In: Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing
Zhang, J., et al: T2R-BENCH: A benchmark for real world table-to-report task. In: Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing. pp. 22427–22451 (Nov 2025)
work page 2025
-
[35]
Data-to-Dashboard: Multi-Agent LLM Framework for Insightful Visualization in Enterprise Analytics
Zhang, R., Elhamod, M.: Data-to-dashboard: Multi-agent llm framework for in- sightful visualization in enterprise analytics (2025), arXiv:2505.23695 A Benchmark Construction A.1 Data Curation Data CollectionTable 6 lists 53 websites, from which we downloaded all datasets along with their metadata via APIs (e.g., CKAN API2). Data FilteringAll downloaded da...
work page internal anchor Pith review Pith/arXiv arXiv 2025
-
[36]
generally showed an in- crease in concentrations with in- creasing age across all cycles, with the 60–79 years age group consistently exhibiting the highest arithmetic means (e.g., 140 ng/g lipid in Cycle 1). Polychlorinated biphenyls (PCBs), particularly ’Marker polychlorinated biphenyls (sum of PCB 138, 153, 180)’, show a clear age-related accumulation,...
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.