Skip to content

data-visualisation

#275: Print Pandas DataFrames as Markdown

When we work with Pandas, we keep our data in a DataFrame. This format works well with the whole workflow, but it is a bit challenging when we dump it to the console so that we then can use it in a document. Luckily for us, there is a nice helper to convert the DataFrame to Markdown.

#254: Rename Columns in Pandas

While it is possible to fix the name of a column later in the plot, it is an additional step that takes time. It would be better if the data source already would have a correct name, but that is not always the case and often we cannot change that either. The remaining middle ground is to rename the column in the DataFrame - let us figure out how to do that.