我有一个电影数据集,其中包含一些英语电影和其他语言的电影。我正在尝试使用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部电影
我在做什么错?我应该汇总什么?
答案 0 :(得分:0)
正如@seanswe在上面的评论中提到的那样,缺少estimator参数!
fig = sns.barplot(x="original_language", y="id", data=train, estimator=len)