Posts by Luis Henrique Batista • 46 points
9 posts
-
-1
votes2
answers99
viewsA: find intersections in two graphs in python
In Python, use the for i in range returns only integer values. To get values of type . float, a possible solution would be: import numpy as np def funcs(): for x in np.arange(-100.0, 100.0, 0.1,…
-
-1
votes1
answer57
viewsQ: Create column based on another dataframe
Good night! I have two dataframes ex8_alunos and ex8_cursos ex8_alunos ex8_cursos I would like to create a column on ex8_alunos calling for CO_UF To power this column I would need to cross-reference…
-
0
votes1
answer343
viewsQ: Import CSV files from Drive into Google Collab
Good afternoon, I’m having trouble importing the files in csv to the collab. Keeps popping up the same error message that my files cannot be located in the folder I specified (and they are there) I…
pandasasked Luis Henrique Batista 46 -
1
votes2
answers43
viewsA: move data left in pandas
Hello, my solution was to renown the columns, as follows: I changed your dataset "tables" to the name df. import pandas as pd import numpy as np import matplotlib.pyplot as plt from unicodedata…
-
-1
votes1
answer47
viewsQ: Fetch value of a condition on lines and separate into a new dataset
I have the following dataset I’m trying to create a dataset based on the dataset above. I am trying to search row by row values that are not Nan, export to a new dataset this value linked to column…
-
-1
votes2
answers150
viewsQ: Cross-reference two different dataframes with different line numbers
I have the following dataset df.head() In the column Education degree, I have the values of the indices of each education degree, shown in the table below: Grau_Instr_Bibl = {'Categoria':…
-
0
votes1
answer53
viewsA: Filter Dataset from a groupby
Try df_reviews[df_reviews['App Version Name'].isin(condicao1[condicao1 == False].index)] That chooses the names that are among those that are False in condicao1. - Jorge Mendes 1 hour ago by Jorge…
-
0
votes1
answer53
viewsQ: Filter Dataset from a groupby
I have the following dataframe (df_reviews) and need to remove the App versions that were downloaded less than 10 times and tried to do the steps below and a for to perform the filter on the…
-
0
votes1
answer58
viewsQ: Working with two different Datasets - Filter the data
Dataset - Players Dataset - Results Good night, I’m stuck in a data wipe. I am working on a project to predict the winners of a particular Counter Strike Global Offensive match, for my final course…