Posts by danimille • 7 points
6 posts
-
0
votes0
answers53
viewsQ: How to connect to an FTP server using digital SHA certificate
I am trying to connect to an FTP server that uses a SHA certificate (.crt) When I try to open the connection to the server I get a return 230 indicating that I am logged in to the server. Follow…
-
0
votes0
answers39
viewsQ: Exporting data to Firebase
I’m trying to export a Python database to Firebase. My database is a JSON in the following format: '{ "0":{ "country":"Italy", "description":"Aromas include tropical fruit, broom, brimstone and…
-
0
votes1
answer34
viewsA: Removing higher value from line with for
I managed to solve my problem using the code below: for i in df.index: df["maxx"] = df.max(axis = 1) df["minn"] = df.min(axis = 1)
-
-2
votes1
answer34
viewsQ: Removing higher value from line with for
Good afternoon, I’m trying to extract the largest whole value from every line of my dataframe. I created the following code for this: for i in df.index: df["maxx"] = df.loc[i].max() df["minn"] =…
-
0
votes2
answers374
viewsQ: Breaking string from a character
Inside my dataframe, one of the columns has information separated by comma, I would like to delete everything within the string after the first comma. Follow the code I’m trying to use: df_movies =…
-
0
votes2
answers651
viewsQ: Filter column by string specifies
I’m trying to perform a filter on my dataframe (df_movies_usa) to eliminate all other types of currency not represented by "$". The coin is in the column df_movies_usa["budget"]. I’m using the…