熊猫:如何在使用read_csv时获取读取行的状态?

时间:2017-03-30 12:20:31

标签: python csv pandas

我正在使用pandasread_csv方法加载一个非常庞大的csv文件,如1000万条记录,我想知道是否有办法显示该加载的进度,类似于:

100,000 lines read
150,000 lines read

感谢。

1 个答案:

答案 0 :(得分:3)

显示这样的进度:

CREATE PROCEDURE dbo.cont_com
(   
    @id_c int,   
    @id_f int)
AS
BEGIN

    declare @porcent int;

    select @porcent=p.porcent 
    from porcent_table p
    where p.id_c=@id_c
    and p.id_c=@id_f;

    select porcent=@porcent;
    return @porcent;

END

你可以试试这个:

Completed 1 %
Completed 2 % 
... 
Completed 99 % 
Completed 100 %