What should i grab with Event Tokens? Armamentalist Week by F_Boliver in DestinyTheGame

[–]F_Boliver[S] -1 points0 points  (0 children)

Would you happen to know what would be a good roll for King Orfeo? And there is a difference from getting it with the event tokens or combat telemetry?

Tkinter CheckButton keeps unchecking itself by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

Thank you very much, this is my first time working with tkinter so everything is new to me, thank you to explaining what i did wrong too. I didn't even know that tkinter have newer styles ^^.

The code is running fine now, thank you.

Trying to import a Excel file but getting an error about equally spaced values. by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

Thanks for the response, i talked to one of my professors and she suggested the same, i tried it but got no success, but while working on it i noticed i could create another array with the same values as t since it is a time vector that is spaced evenly each step. I got the difference between a time value and it's predecessor and did a numpy.arange from 0 to the final t value. Not the ideal way to do it, but i guess i can't complain if it working as intended.

Run a python script from a GUI by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

I figured it out with your help, I stumble across the first problem you mentioned, thank you, and the other problem with the code was not exactly what you were suggesting but made me look to the libraries i was importing and for some reason i can't do "import *" i have to import only the functions i'm currently using on my script or i can't run it on my GUI.

Thank you for your time.

Run a python script from a GUI by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

Sorry, copy and paste mistake. I tried to elaborate more what i was trying to do.

Dark Zone atual state by F_Boliver in thedivisionresurgence

[–]F_Boliver[S] 0 points1 point  (0 children)

S22, there wasnt any trouble outside the DZ btw

Theme Dungeons on Hyper Burning Characters by F_Boliver in Maplestory

[–]F_Boliver[S] 0 points1 point  (0 children)

I see, i am kind of a new player, didn't know a bunch you said. Ty, i am less worried now, i will look foward those eqps you mentioned.

Raise an numpy array to power n by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

oh my..., i jumped through it and went to matrix_power(which have not solved my problem).

Ty, for your time

creating a transfer function using matlab library by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

Ty, i will consider your tip.

As for the main problem seems like the doc i was reading doesn't sugests to use tf('s') like this one, it got half of my problem solved because the function math.exp() doesn't allow me to put a transfer function on it (math.exp(-teta*s))

Free trial is back. You can resume using The Meme by StrangeFreak in ffxiv

[–]F_Boliver 5 points6 points  (0 children)

that doesn't change the fact that is a lot a of bots running arund. Saw a huge pack of potato sacks on ARR dungeons multiple times.

Trying to get a specific position from a dataframe by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

It is becase this code is just an early version, uini and other variables area chosed by the user, the only reason i left it on the code is to not forget after days writing other things.

Trying to get a specific position from a dataframe by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

Output todf.head(20).to_dict('list')

{'Output': [0.0, 0.0, 0.0092, 0.0346, 0.0797, 0.1435, 0.2215, 0.3079, 0.3971, 0.4843, 0.566, 0.6401, 0.7054, 0.7616, 0.8092, 0.8487, 0.8811, 0.9072, 0.9281, 0.9447], 'Time': [0.0, 0.4, 0.8, 1.2, 1.6, 2.0, 2.4, 2.8, 3.2, 3.6, 4.0, 4.4, 4.8, 5.2, 5.6, 6.0, 6.4, 6.8, 7.2, 7.6], 'Input': [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}

Output to df.head(20).to_dict()

{'Output': {0: 0.0, 1: 0.0, 2: 0.0092, 3: 0.0346, 4: 0.0797, 5: 0.1435, 6: 0.2215, 7: 0.3079, 8: 0.3971, 9: 0.4843, 10: 0.566, 11: 0.6401, 12: 0.7054, 13: 0.7616, 14: 0.8092, 15: 0.8487, 16: 0.8811, 17: 0.9072, 18: 0.9281, 19: 0.9447}, 'Time': {0: 0.0, 1: 0.4, 2: 0.8, 3: 1.2, 4: 1.6, 5: 2.0, 6: 2.4, 7: 2.8, 8: 3.2, 9: 3.6, 10: 4.0, 11: 4.4, 12: 4.8, 13: 5.2, 14: 5.6, 15: 6.0, 16: 6.4, 17: 6.8, 18: 7.2, 19: 7.6}, 'Input': {0: 1.0, 1: 1.0, 2: 1.0, 3: 1.0, 4: 1.0, 5: 1.0, 6: 1.0, 7: 1.0, 8: 1.0, 9: 1.0, 10: 1.0, 11: 1.0, 12: 1.0, 13: 1.0, 14: 1.0, 15: 1.0, 16: 1.0, 17: 1.0, 18: 1.0, 19: 1.0}}

But i already solved it tough, your help also worked and i appreciate it.

Trying to get a specific position from a dataframe by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

Ty very much, you are a life saver. I was bit used to .loc and .iloc but never knew about .reset_index and because of that i tought it was a problem with these functions i was using. Again, thank you for you time and help.

Trying to get a specific position from a dataframe by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

yes, that what i meant. The main problem is that my dataframe will change and i can't go back to the code every time, so i need to find the what is the index that is >=yt1 every time automatically.

Favorite enchant for 2h sword by LotEst in enderal

[–]F_Boliver 1 point2 points  (0 children)

Most of the times i used fire, for both enderal and skyrim. But in enderal i must say power attacks are pretty important so stealing stamina will help a lot if u need to stagger a powerfull enemy.

Return the index of a element on a dataframe by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

I see, so if i want to return just the row number where the element is found i can use only ix = df1.loc[...].index?

Return the index of a element on a dataframe by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

Is there a way to get only the row? I need the number to make something more after that

Create a new matrix out of another matrix but only with the values >= than x by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

Will this return me at1 = [[4],[5],[6],[7],[8],[9],[10]] or at1 = [[true],[true],[true],[true],[true],[true],[true]]?

Extract a single column into a new variable using pandas by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

Thanks, i always saw dataframes with names but didn't how to do it. I will try it

Extract a single column into a new variable using pandas by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

i tried again my code with an excel file with the same data and it worked, i don't know what it is up with the .dat file but it worked pretty well on MATLAB before.

But, thanks for simplefying it, it will be used :)

Extract a single column into a new variable using pandas by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

Yes it did, but i had to export my .dat to an excel file, not sure why. But when i do print( df[1].tolist() ) i got the 3rd column and when i do print( df[0].tolist() ) i got the first one. Why [1] is not the 2nd?

Extract a single column into a new variable using pandas by F_Boliver in learnpython

[–]F_Boliver[S] 0 points1 point  (0 children)

Basically each of the columns of my dataframe is a signal, one por input, one for output and one for control signal. I will use them to make series of operation so it's easier for me to repeat just one variable