Category: Python, Pandas

Raspberry Pi controlled ceramic kiln

In this series of articles I am sharing my experiences with building a Raspberry Pi-controlled kiln from a second hand kiln. In this initial installment, I share my process of […]...

Multivariate data, multiviews and interaction

This article I will cover how to: Understand the application of multivariate data Understand the functions of multiviews Datatypes defined by Ben Shneiderman Apply multiviews for exploratory and explanatory data […]...

String formatting with variables

The method to use is: str.format(*args,Β **kwargs) Perform a string formatting operation. The string on which this method is called can contain literal text or replacement fields delimited by braces {}. Each […]...

Creating a subclass

The purpose of child classes — or sub-classes, as they are usually called – is to customize and extend functionality of the parent class.  Let’s call the Employee class from what we […]...