7 Useful Pandas Display Options You Need to Know
|

7 Useful Pandas Display Options You Need to Know

Pandas is a powerful Python library commonly used within data science. It allows you to load and manipulate datasets from a variety of sources and is often one of the first libraries you come across in your data science journey. When working with pandas, the default options will be suitable for the majority of people. However, there may…

Creating a Multi-Well Integrated Well Log and Formation Tops Dataframe in Python
|

Creating a Multi-Well Integrated Well Log and Formation Tops Dataframe in Python

When working with well log measurements and subsurface data we are often dealing with different file formats and sample rates. For instance, well log measurements are typically stored and transferred within .las files or dlis files and sampled every 0.1m or 0.5ft. Geological formation tops on the other hand are single discrete depth points. This requires interpolation…

Combining Formation Data With Well Log Measurements in Pandas
|

Combining Formation Data With Well Log Measurements in Pandas

When working with subsurface data we often deal with datasets that have been sampled in different ways. For example, well log measurements are continuously recorded over intervals of the subsurface at regular increments (e.g. measurements every 0.1 m), whereas formation tops are single depth points. Within this article, we will cover a way of integrating…

How to Rename Columns in Pandas — A Quick Guide

How to Rename Columns in Pandas — A Quick Guide

A short guide on multiple options for renaming columns in a pandas dataframe Ensuring that dataframe columns are appropriately named is essential to understanding what data is contained within, especially when we pass our data on to others. In this short article, we will cover a number of ways to rename columns in a pandas…

Displaying Logging While Drilling (LWD) Image Logs in Python
|

Displaying Logging While Drilling (LWD) Image Logs in Python

Borehole image logs are false-color pseudo images of the borehole wall generated from different logging measurements/tools. How borehole images are acquired differs between wireline logging and logging while drilling (LWD). In the wireline, environment measurements are made from buttons on pads that are pressed up against the borehole wall and provide limited coverage but at…