Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2022 05:23 PM
Hi , I have run this code
import matplotlib.pyplot as plt
import numpy as np
plt.style.use('bmh')
%matplotlib inline
x = np.array([5,7,8,7,2,17,2,9,4,11,12,9,6])
y = np.array([99,86,87,88,111,86,103,87,94,78,77,85,86])
p= plt.scatter(x, y)
display
command runs but no result is showing . I am using databricks 7.6 version any help will be greatly appreciated
Labels:
- Labels:
-
Python