We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Type error when i run the following line of code
sns.jointplot(customers['Time on App'],customers['Yearly Amount Spent'])
TypeError Traceback (most recent call last) Cell In[15], line 1 ----> 1 sns.jointplot(customers['Time on App'],customers['Yearly Amount Spent'])
TypeError: jointplot() takes from 0 to 1 positional arguments but 2 were given
The text was updated successfully, but these errors were encountered:
This is how i fixed it sns.jointplot(x=customers['Time on App'],y=customers['Yearly Amount Spent'],kind='hex')
Sorry, something went wrong.
No branches or pull requests
Type error when i run the following line of code
sns.jointplot(customers['Time on App'],customers['Yearly Amount Spent'])
TypeError Traceback (most recent call last)
Cell In[15], line 1
----> 1 sns.jointplot(customers['Time on App'],customers['Yearly Amount Spent'])
TypeError: jointplot() takes from 0 to 1 positional arguments but 2 were given
The text was updated successfully, but these errors were encountered: