按元素总数绘制数据

时间:2019-06-12 03:00:35

标签: python pandas plot bar-chart

我有一个电影数据集,其中包含一些英语电影和其他语言的电影。我正在尝试使用sns条形图显示每种语言的电影数量。 我尝试过:

class A {
  static someMethod() {
    console.info("Called via B!");
  }
}

class B {
  anotherMethod(...args) {
    return A.someMethod(...args);
  };
}

const b = new B();

b.anotherMethod();

但这显示了错误的结果,所有电影均为英语,而我的实际数据显示我有:

32267英文电影

其他13193部电影

我在做什么错?我应该汇总什么?

1 个答案:

答案 0 :(得分:0)

正如@seanswe在上面的评论中提到的那样,缺少estimator参数!

fig = sns.barplot(x="original_language", y="id", data=train, estimator=len)