Pandas でデータフレーム df の行数を取得しようとしています。これが私のコードです。
方法 1:
total_rows = df.count
print total_rows + 1
方法 2:
total_rows = df['First_column_label'].count
print total_rows + 1
両方のコード スニペットでこのエラーが発生します。
TypeError: + のサポートされていないオペランド型: 'instancemethod' および 'int'
私は何を間違っていますか?