The output that you see at the bottom of the cell is there ("output_type": "execute_result"), and the source code, but also three "output_type": "display_data" objects, one for each url. This type of output is also used for images, graphs, and rendered HTML, which you would nor...
(1e5) # choose a high number to "smooth out" lines in plotsx_angle = np.linspace(0,2*np.pi,nmax) # create an array x for bottom right y_br = abs(np.cos(3*x_angle)) # y for the bottom right subplotfig, ax = plt.subplots(subplot_kw={'projection': 'polar'})ax.plot(x_...
Notice in the histogram that most of our data, more than 35 customers, is concentrated near the number60, on ourmean, in the horizontal axis. But what happens as we move towards the ends of the distribution? When going towards the left, from the $60.560 mean, the next value we will e...
6), dpi=100) grid = plt.GridSpec(4, 4, hspace=0.5, wspace=0.2) # Define the axes ax_main = fig.add_subplot(grid[:-1, :-1]) ax_right = fig.add_subplot(grid[:-1, -1], xticklabels=[], yticklabels=[]) ax_bottom = fig.add_subplot...
Gene-set Enrichment Figures (only when Gene-set Enrichment Analysis is selected): Figures showing (i) the semantic similarity-based matrix along with dendrograms and clusters, (ii) the enriched terms after semantic similarity reduction, and (iii) a wordcloud representation for each cluster with the...