Posts by YanSym • 114 points
10 posts
-
0
votes1
answer1410
viewsQ: Redirecting Adobe XD content in Wordpress
The company where I work hired someone to make a simple Dashboard using Adobe XD. Example: https://xd.adobe.com/view/67c0b3a6-f0e6-4f67-a209-e41767311939/ But we would like to host Dashboard on our…
-
2
votes1
answer60
viewsA: Help with Select query in Mysql
I believe that would solve your problem: SELECT * FROM CLIENTES WHERE CLIENTES.IDCLIENTE IN (SELECT IDCLIENTE FROM PRODUTOS_CLIENTES WHERE IDPRODUTO = 19) AND CLIENTES.IDCLIENTE NOT IN (SELECT…
-
2
votes1
answer1864
viewsQ: Optimal separation of a data set in: Training, Validation and Testing
I would like to know if there is a recommendation of type "Rule of Thumb" to, in a Machine Learning problem, divide a data set into 3 sets: Training, Validation and Testing. If so, what would be the…
machine-learningasked YanSym 114 -
2
votes1
answer999
viewsA: Where are the files of projects developed in Android Studio on Linux?
The top of the Android Studio bar title shows the full name of the directory path where you are saving your project.…
-
1
votes3
answers568
viewsA: Memoryerror on the pandas
Memoryerror in pandas happens when you try to carry in memory a very large dataframe. Try to break your processing into Chunks of dataframes and concatenate them later!
-
5
votes1
answer821
viewsA: invalid Digit "9" in octal Constant Arduino
Arduino uses the C/C++ programming languages and, in their syntax, a float number is set using a dot, not a comma. For example: float pi_correto = 3.14 /* correto */ float pi_errado = 3,14 /*…
-
0
votes1
answer4440
viewsQ: Concatenate pandas dataframes with different column names
I have two pandas Dataframes that I would like to match into one. They have the same number of columns in the same order, but have headers with different names. Is there any approach to efficiently…
-
3
votes2
answers2666
viewsA: Git, how do I move a file or folder to another repository keeping the history?
You can simply clone your remote repository into another directory on your machine: mkdir <repositorio-backup> -- cria o diretorio para o backup cd <repositorio-backup> git clone…
-
0
votes2
answers1545
viewsA: How to increment the value of a variable according to the user’s response?
Just make a conditional to check what user input was! fotossenbilidade = input('Você tem sensibilidade com relação a luz?') Peso = 0 # inicializa variavel Peso # loop para garantir que o input do…
-
1
votes1
answer6608
viewsA: Add column to a dataframe based on the classification made on another dataframe
The answer I developed is little "pythonica" and "pandonica", but that’s what I got. I hope it helps you! import pandas as pd df1 = pd.read_csv('df1.csv') df2 = pd.read_csv('df2.csv') df1_values =…