You can create a scatter plot using the plot() function with the kind parameter set to 'scatter'.
Here's an example:
import pandas as pd
import matplotlib.pyplot as plt
# Sample data
data = {'Height (inches)': [64, 68, 72, 70, 66, 74, 61, 75, 68, 72],
'Weight (lbs)': [125, 155, 180, 160, 140, 200, 110, 220, 165, 185]}
# Create a DataFrame
df = pd.DataFrame(data)
# Plot a scatter plot
df.plot(kind='scatter', x='Height (inches)', y='Weight (lbs)', title='Height vs. Weight')
plt.xlabel('Height (inches)')
plt.ylabel('Weight (lbs)')
plt.show()