BLOG

Data Science

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

Read More »
pandas playing tree branch
Data Science

How to Level up Your Pandas Skills in 5 Easy Ways

Pandas is a powerful and versatile Python library for data science. It is often one of the first libraries you come across when learning how to use Python for data science applications. It can be used to load data, visualise it and manipulate it to suit the objectives of the project you are working on. However,

Read More »
Petrophysics

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

Read More »
Petrophysics

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

Read More »
Python

Convert CSV Files to LAS Files with Python

Quick and simple conversion process to create a LAS file from scratch using LASIO and CSV Data Well log data can be delivered in a variety of formats (DLIS, LAS, CSV, ASC etc.). If you have a CSV file containing well-log data, and you want to convert it to LAS format, you can use the LASIO

Read More »
photo of panda and cub playing
Python

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

Read More »
Petrophysics

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

Read More »