Richard Medina wrote:
> I want to create a vector from a dataframe in a loop. Then I want to
> create a new column from this vector.
>
> for row in df.itertuples():
> mm = str(row.t) #selecting "t" column
> nn = get_sec(mm) #this function converts time to seconds
> d
I want to create a vector from a dataframe in a loop. Then I want to create a
new column from this vector.
for row in df.itertuples():
mm = str(row.t) #selecting "t" column
nn = get_sec(mm) #this function converts time to seconds
df["s"] = nn #I want to add my new ve