I am currently using Atom and when i run my code the output graphs are being shown in a sequential order such that I can only see the next graph after closing the first graph.
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
housing = pd.read_csv("C:\\Users\\<username>\\handson-ml\\datasets\\housing\\housing.csv")
housing.hist(bins=50, figsize=(20,15))
plt.show()
housing["income_cat"] = np.ceil(housing["median_income"]/1.5)
housing["income_cat"].where(housing["income_cat"]<5, 5.0, inplace=True)
plt.hist(housing["income_cat"])
plt.show()
How to correct this so as to see all the graphs simultaneously? Being used to Jupyter I am having trouble performing data visualization on other platforms.