Accelerating Python Data Analysis with DuckDB

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ม.ค. 2025

ความคิดเห็น • 4

  • @higiniofuentes2551
    @higiniofuentes2551 4 หลายเดือนก่อน

    Thank you for this very useful video!

  • @JohnFrederickRosas
    @JohnFrederickRosas 8 หลายเดือนก่อน

    May I ask how did a 44.2 GB csv file size manage to operate? I thought there is a maximum of 2 million rows in a single file of excel? Thank you for clarifying.

    • @leassis91
      @leassis91 8 หลายเดือนก่อน

      it wasnt an excel file, it was a .txt

    • @justinsmethers
      @justinsmethers 8 หลายเดือนก่อน

      Hi John, thanks for the question. The 2 million row limit applies to Excel sheets, not CSV files. CSV files are essentially plain text files (hence why it's a .txt file here) that can store data in a tabular format with no inherent row or column limits. In the demo, DuckDB reads from the file directly without using Excel. I hope that clears things up