How to change the tables’ fontsize with matplotlib.pyplot

I think the documentation is either hinting at a parameter-to-be (notice fontsize is not a link like the other parameters) or perhaps is a bit misleading at the moment. There is no fontsize parameter. Digging through the source code, I found the Table.set_fontsize method: table = sub_axes.table(cellText=table_vals, colWidths = [0.15, 0.25], rowLabels=row_labels, loc=”right”) table.set_fontsize(14) table.scale(1.5, … Read more

Performing a Stress Test on Web Application?

Here’s another vote for JMeter. JMeter is an open-source load testing tool, written in Java. It’s capable of testing a number of different server types (for example, web, web services, database, just about anything that uses requests basically). It does however have a steep learning curve once you start getting to complicated tests, but it’s … Read more