I am new to Python and am trying to create a simple line graph with time on the x axis and values on the y. I have a CSV file from which to import the data.
A sample of the data looks like this
I have tried to use the following code:
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
a_data = pd.read_csv("Data Sampler.csv")
plt.plot(a_data.Timestamp, a_data.a)
However, I am receiving an error message: AttributeError: 'Series' object has no attribute 'find'
a_data.dtypes tells me that Timestamp is an object and A is float 64.
Can anyone help? From googling a solution, it looks like I need to convert the timestamp to a datetime within Python - however I am not having much luck with this (lots of error messages).
Thanks in advance.

