Creating a 3d barchart but very similar to 2d
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
0
I'm new to matplotlib and I'd like to some a barchart almost equal to this image. As you can see, there's a line that represents the average of all bars, it's basically a 2D bar chart in a fancy, 3d portrayal. I have some code already but only works for 2d: import numpy as np import matplotlib.pyplot as plt chart = plt.figure()#figsize=(15, 15) ax = chart.add_subplot(111) tags = ('Python', 'C++', 'Java', 'Perl', 'Scala', 'Lisp') x = np.arange(len(tags)) performance = [5, 8, 6, 4, 2, 1] avg = items = len(performance) index = 0 while index < items: