Denwen12

Results 137 comments of Denwen12

here is a sample of my csv Name | Salary | Position | Matchup | Team | Opponent | Ownership % -- | -- | -- | -- | --...

Im not Sure how i can use current projected ownership. I do have the numbers inserted in the players-list but not sure how i can add that with my code...

i want min 10 to max 25 projected ownership, the way you see my ownership column is how i put it into the projected ownership in the players-list

also can you show me another way to read the data in the csv as a seperate way or whatever way you think

i Actually got it working by converting to decimal to like 14 to .140 anyway to have this use whole numbers?

@sansbacon it works if i only use salary or ownership alone but when i try with ownership and salary constraints it cant generate, i am using ``` sg_max_projected_ownership = .200...

do you know if there is a way @sansbacon

With this code how do u add in randomness

I tried but didn't work like usually after the count On Thu, Dec 9, 2021, 7:15 PM Owen-Slater ***@***.***> wrote: > @Denwen12 you would need to add settings > with...

I tried it like this lineups = [] optimizer.add_stack(TeamStack(4)) for lineup in optimizer.optimize(50, randomness=true): lineups.append(lineup) optimizer.reset_stacks() optimizer.add_stack(TeamStack(3)) for lineup in optimizer.optimize(50, exclude_lineups=lineups, randomness=true): lineups.append(lineup) optimizer.reset_stacks() for lineup in optimizer.optimize(50, exclude_lineups=lineups,...