Skip to content

Tag: python

Filter dataframe based on 2 columns

I have a big dataframe city Flow Berlin False Berlin True Vienna False Vienna True Vienna False Frankfurt True Frankfurt False I want to remove only the rows where city and flow is Vienna and false using python Resulting dataframe should be city Flow Berlin False Berlin True Vienna True Frankfurt True Frankfu…

cvxpy not allowing item assignment for MulExpression

I have a sparse matrix operation as part of the optimization constraint. I can implement the program in Matlab cvx, now I am trying to implement a cvxpy version. The problem is following constraint: M is a sparse matrix, with only a few entries are declared variables. I don’t know a decent way to constr…