Tag: Python

The Transformative Role of Large Language Models in Time Series Forecasting

Time Series Forecasting (TSF) is crucial in data science for predicting future values from historical data. Traditional methods often struggle with complex, variable data, but Large Language Models (LLMs) offer new capabilities. LLMs excel in capturing intricate patterns and handling unstructured data like text, enhancing forecast accuracy. They are...

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 […]...

Merging dataframes with Pandas

Performing Anti-Joins Merge employees and top_cust with a left join, setting indicatorargument to True. Save the result to empl_cust. Select the srid column of empl_cust and the rows where _merge is 'left_only'. Save the result to srid_list. Subset the employees table and select those rows where the srid is […]...

Object Oriented Programming in Python

In normal life to tend to think in sequences of activities. Procedural programming Code as a sequence of steps Great for data analysis and scripts Object-oriented programming Code as interactions […]...