Skip to content
Advertisement

Storing outputs from input parameters into the rows of a panda data frame

I have a list containing values that I want to perform mathematical operations on with different input parameters that are also stored in a list. For each value in the list, I want to store the results from performing the operation – with each distinct input parameter – row-by-row, where each row corresponds to the subsequent input parameter in the list. Here is a minimal reproducible example of my code:

JavaScript

All this code currently does for me is add param[1] to each element in vals and stores them into each of my two specified rows. What I want is to add param[0] to each element in vals, store and save it to the first row of my data frame, then step forward with param[1], store it in the second row, etc…

Eventually, I want to apply this to a much larger data set with more input parameters, but for now I would just like to know how I can best accomplish this task before scaling it up. Any guidance or advice is greatly appreciated!

Advertisement

Answer

The intent is unclear, but does this do what you want?

JavaScript
Advertisement