TypeError: regplot() got an unexpected keyword argument 'vector_size'
时间: 2023-10-03 08:05:05 浏览: 307
这错误提示表明 `regplot()` 函数不支持 `vector_size` 这个参数。可能原因是你在调用 `regplot()` 函数时错误地使用了 `vector_size` 参数,或者你使用的是一个过时的版本,不支持该参数。你可以检查一下你的代码是否正确,并查看 `regplot()` 函数的文档以确定支持哪些参数。
相关问题
TypeError: SemiDataset: __init__() got an unexpected keyword argument '_delete_'
这个错误提示是在使用SemiDataset类的时候出现的,__init__()方法传入了一个不被期望的关键字参数'_delete_'。这个错误可能是由于代码中对SemiDataset类的调用有误导致的。建议检查代码中对SemiDataset类的调用,确保传入的参数符合该类的要求。如果问题仍然存在,可以尝试查看SemiDataset类的文档或者寻求相关技术支持。
TypeError: regplot() got an unexpected keyword argument 'zise'
The error message indicates that there is a typo in the code. Instead of 'size', the keyword argument 'zise' was used in the regplot() function. To fix the error, simply change 'zise' to 'size' in the code. Here's an example:
```
import seaborn as sns
import matplotlib.pyplot as plt
tips = sns.load_dataset("tips")
sns.regplot(x="total_bill", y="tip", data=tips, size=5)
plt.show()
```
In this example, we are using the `size` keyword argument instead of `zise`, which should resolve the TypeError.
阅读全文