import numpy as npimport matplotlib.pyplot as plt
# Create data
N = 500x = np.random.rand(N)
y = np.random.rand(N)
colors = (0,0,0)
area = np.pi*3
# Plot
plt.scatter(x, y, s=area, c=colors, alpha=0.5)
plt.title('Scatter plot pythonspot.com')
plt.xlabel('x')
plt.ylabel('y')
plt.show()
# Set figure size (width, height) in inches
plt.figure(figsize = ( 5 , 3 ))
# Plot scatterplot
sns.scatterplot( x = "total_bill" , y = "tip" , data = tips )
# Set label for x-axis
plt.xlabel( "Total Bill (USD)" , size = 12 )
# Set label for y-axis
plt.ylabel( "Tips (USD)" , size = 12 )
# Set title for figure
plt.title( "Bill vs Tips" , size = 24 )
# Display figure
plt.show()