Posts by Eduardo Garcia de Oliveira • 49 points
7 posts
-
0
votes1
answer33
viewsA: Click on a button inside the power bi with python
I suggest for an application of this type a scheduled update of Power BI itself. If you don’t want to, try using pyautogui with cursor placement to do the update or by Screenshot. Remembering that…
-
0
votes0
answers45
viewsQ: Extract values from specific parts of a . txt PYTHON
I have a Test Base that I need to extract some values in a standard way, but several times I receive more than one value between the beginning and the last line that starts with 0089 (CONVENIO) in…
-
0
votes3
answers34
viewsA: Doubt about converting str to int with py/pandas ((dataset))
You can use lambda this way to remove ". 0" since your numbers are integers data['Score-9'] = data['Score-9'].apply(lambda x: x.replace('.0', ''))
-
0
votes1
answer61
viewsQ: Add values from a column that are duplicated using groupby as python criteria
I have a data frame that needs to be removed duplicates and later from the previous dataframe I need to add a specific column. Actually I have 5 DF, 4 have already worked, but one because it…
-
1
votes1
answer41
viewsQ: Include a character in an excel python values
I have a dataframe whose column has 12 characters. However most on the left are zeros and at the end of it I have the values. Examples: I’m trying to include a comma or dot before the last 2…
-
0
votes1
answer31
viewsQ: Creating email with text and HTML does not work | Email spacing
I’m having difficulty creating an email on pandas that will send a text and an HTML. Dear, Sending test; • Over the phones: XXXXXX - XXXXXXXXX • TEST Rejected (s): HERE COMES AN HTML TABLE THAT…
-
-2
votes2
answers77
viewsQ: Split columns without Pandas tab
Is there any pandas method for splitting columns without separator? would be a kind of excel ext.text. I have a base with a 20-character column, but I only need the interval between 11 and 14. ex.…