You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if this is a result of my inexperience with python3 or has something to do with how I'm setting up the input data, but to get things to work I had to change line 99 of preprocessing.py ( muVec = standardizedMean(cyDf, vars=compCommvars) ) to:
muVec = standardizedMean(cyDf, None)
For some reason the function was never recognizing compCommvars as defined, even though I verified that it was defined prior to the function call by printing it. Anyhow, it looks like your function has a workaround for missing compCommvars built in already, so it progressed, but wanted to see if you had thoughts on this.
Cheers,
Jeremy
The text was updated successfully, but these errors were encountered:
Hi Andrew,
Not sure if this is a result of my inexperience with python3 or has something to do with how I'm setting up the input data, but to get things to work I had to change line 99 of preprocessing.py ( muVec = standardizedMean(cyDf, vars=compCommvars) ) to:
muVec = standardizedMean(cyDf, None)
For some reason the function was never recognizing compCommvars as defined, even though I verified that it was defined prior to the function call by printing it. Anyhow, it looks like your function has a workaround for missing compCommvars built in already, so it progressed, but wanted to see if you had thoughts on this.
Cheers,
Jeremy
The text was updated successfully, but these errors were encountered: