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
@twiecki I fixed this, but you really should do this like
df.ix[[0,1,2],'a'] = -df.ix[[0,1,2],'a']
your method will in general fail when assigning a non-trivial rhs as you would be assigning to a copy (this specific does work as its a complete assignment within a signle dtype)
This works with
0.12
but not with master:This is where it showed up: hddm-devs/hddm#35
The text was updated successfully, but these errors were encountered: