Posts by Cleverson Mendes Faria • 31 points
4 posts
-
0
votes2
answers71
viewsA: Python rounding list
Good night! Try to do it this way: * need to import numpy library import numpy as np a = np.array([1.2,2.3,3.4]) b = np.array([4.1,5.2,6.3]) x = 3.0 idx = (np.abs(a-x)).argmin() print(idx)…
-
0
votes2
answers2310
viewsA: Split a column into two from a parameter - Python
Good afternoon! Below is an example of the split to create new columns in df. import pandas as pd # Lendo o arquivo CSV e carregando para "data" data =…
-
0
votes1
answer34
viewsA: Automatic lap update with last 12 data
Good night! To better explain what your formula is currently doing, see below: Is always scrolling (N - 12) lines, where N = Qtd. of Values in the range If you could send me more details, maybe I…
-
0
votes1
answer42
viewsA: How to make a "hierarchical conditional formatting" in Excel 2010?
Good night buddy, all right? Check your percentage field, because in some cases depending on the number of decimals, the function (CÉL + Format) can bring you other returns. See the example of…