Posts by MuriloDS • 19 points
2 posts
-
0
votes1
answer31
viewsQ: Create dataframe pandas 1 key and some non-standard values in the dictionary
I have a dictionary in Python: dict = {0:[['tela1'],['tela2'],['tela3']], 1:[['tela2']], 2:[['tela5'],['tela7']], 4:[['tela1'],['tela3']]} and would like to transform into a dataframe as follows: Id…
-
-2
votes1
answer43
viewsQ: How to relate a column A to B where column B starts with special characters?
I have the df as indicated in the image, and would like the user to search the element of column B and return the element of column A corresponding... What I was able to do was the reverse only,…