data = np.random.random(size=(4,4))
df = pd.DataFrame(data)
# Convert DataFrame to a single-column Series
stacked_data = df.stack() # Stacked in a single column
stacked_data.plot.box(title="Boxplot of All Data") # Draw a single box plot