Skip to main content

Posts

Showing posts with the label programming

Micropython example

micropython code on github   This is the micropython code I used on my raspberry pico to collect sensor data and send it to my own home IOT mqtt broker.   I specialise in making code that can collect data and send it and perpetually continue to do that without getting an error disrupting the program.

Date-Time Fixer with Python

Sample of my Python Code https://github.com/cuthbert86/RiverProject/blob/main/datetime1.py This is an example of some of my data management work.  I wrote a python code that combined date and time columns into a single date-time column and then formatted it into .ISO format. import pandas as pd # Load your data from a CSV file (adjust the filename and path accordingly) file_path = 'riverdatacsv.csv' df = pd.read_csv(file_path) # Merge Date and Time columns into a single DateTime column with the ISO 8601 format df['DateTime'] = pd.to_datetime(df['Date'] + ' ' + df['Time']).dt.strftime('%Y-%m-%dT%H:%M:%S') # Drop the original Date and Time columns if needed df = df.drop(['Date', 'Time'], axis=1) # Display the DataFrame with the new DateTime column print(df)    

Unlocking the Power of Data: Why My Passion for Mathematics Makes Me the Ideal Candidate for Data Analytics

   Cuthbert Baines was probably the only person on his computing course at Hallam University who genuinely enjoyed every module that involved Data and Data Analysis.  In today’s fast-paced digital world, data is everywhere. From business trends to user behavior, data has the power to shape decisions, drive growth, and forecast future trends. However, data is only as valuable as the people who know how to interpret it. That’s where I come in. As someone with a deep passion for mathematics, I’ve honed the analytical skills needed to thrive in the world of data analytics. My journey has been one of both challenge and triumph, constantly pushing me to solve problems and unlock new insights. With a strong foundation in math, I’m not only capable of understanding complex datasets, but also transforming them into meaningful stories that can guide business strategy and decision-making. The Intersection of Mathematics and Data Analytics Mathematics isn’t just a subject I studie...