Posts by Brenda Xavier • 410 points
33 posts
-
0
votes1
answer31
viewsA: Build application made with Flask
This is a bug that has not yet been solved in flask, follows debate in git Debate on the bug in question So I modified my.py app that way from flask import Flask from spcdados.extensoes import…
-
0
votes1
answer31
viewsQ: Build application made with Flask
While running flash run, I get the following error: Error: Detected Factory 'create_app' in module 'spcdados.app', but could not call it without Arguments. Use…
-
1
votes0
answers40
viewsQ: Mashup Qlik Sense - MIME invalido
I am using Meshup with Angular 1.0.0 in Qlik Sense, when importing the application in the browser I have the following error: "O script de {caminho do meu script}, foi carregado apesar do seu tipo…
-
1
votes0
answers25
viewsQ: levenshteinSim in R using two dataframe
Dataframe: dataNomeAlunos NomeAluno Nota Materia Marcos Souza Magalhaes 10 Port Junior Moraes 5 Mat Mirela Chavier 3 Port dataNomeMatch NomeAluno Nota Materia Marcos Sousa Magalhaes 10 Portugues Jr…
rasked Brenda Xavier 410 -
-1
votes1
answer1845
viewsQ: Show image when mouse over a div - CSS
On the site cited has an effect that when you hover over the link it appears an image. https://www4.benner.com.br/ .ul_ajudamos{ margin: 20px 0 0 20px; list-style:none; padding-right: 500px ; }…
-
-1
votes2
answers329
viewsQ: Grab Value from multiple buttons in Javascript
How to get the value of various buttons using Javascript ? Qual cor você prefere ? _______ ______ ______ |verde| |Azul| |Rosa| ------- ------ ------ Qual sorvete você prefere ? ___________ _________…
-
0
votes1
answer492
viewsQ: Export HTML table to dynamic Excel with the user
I have a table in html where the user will put the values, after informing the values in this table, I must export as excel. Currently the code is exporting only the values "th", I can not identify…
-
0
votes1
answer805
viewsQ: Sending e-mail with excel attachment - Python
import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from email.mime.base import MIMEBase from email import encoders email_user = '[email protected]'…
-
0
votes1
answer7196
viewsQ: Modulenotfounderror: No module named 'authorizations'
How can I import a folder using Python in Spyder ? Currently I have the following structure of dir Gestao | |_ Aplicacao | |_ Autorizacoes In the script import pandas as pd import imaplib import…
-
1
votes1
answer29
viewsQ: Generate subsequent month in R
How do I place the following month? df1 dt nome idade 01/03/2018 ll 15 07/03/2019 dd 33 31/12/2019 ff 44 After rules df1 dt nome idade 01/03/2018 ll 15 01/04/2019 dd 33 01/01/2020 ff 44 The rule is…
-
0
votes2
answers40
viewsA: Dataframe using R
juncao <- data.frame(data.table::rbindlist(df1,df2 , fill = TRUE))
-
-1
votes2
answers40
viewsQ: Dataframe using R
I am with multiple files . xls and all have the same layout. I want to leave them in a single dataframe, for example: df1 nome idade sexo Fulano 22 M df2 nome idade sexo Fulana 27 F dfJuncao nome…
-
2
votes1
answer72
viewsQ: Export file . SAP in R
It would be possible to export a file in . SAP using R or Python ? Find a tutorial that said that in R to export to . SAP it would be as follows: write_sas(df, "table.sas7bdat") But I was left with…
-
0
votes1
answer182
viewsA: Back to previous page : Electron
I was able to solve it this way: click(){ mainWindow.loadFile('index.html') }
-
0
votes1
answer182
viewsQ: Back to previous page : Electron
I’m using Electron to develop an application where your goal is to leave some selected sites there. Now I’m facing a problem that when I go to a link of one of the options that are in the…
-
1
votes1
answer739
viewsA: Electron: Electron-packager: command not found
I got it this way. In the . json file add "scripts": { "package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=assets/icons/mac/icon.icns --prune=true…
-
1
votes1
answer739
viewsQ: Electron: Electron-packager: command not found
I’m not able to create the application using the electron. I install the package and when I will execute the command: electron-packager d/dev/puxa Puxa I get the following error message: "Bash:…
-
0
votes2
answers92
viewsQ: Calling the Javascript function with just one click
I would like to know how to call more than one function with just a "Click". window.onload = function(){ var btn = document.getElementById("resposta"); btn.addEventListener("click",function(){ var…
javascriptasked Brenda Xavier 410 -
1
votes2
answers190
viewsQ: Using a select value with Javascript
I need to use the value of a select in an if, at the moment I have this: Esse seria o HTML: <p>Quantidade de vidas? </p> <select> <option value="vidas1" id="vidas">Mais…
-
0
votes0
answers145
viewsQ: Refusal of accent with . bat
I have a . bat that when executed calls a script. My problem is that the files that are called by the script have "ç,á," type accents, things like that. So when he looks for the file, he can’t find…
-
0
votes2
answers109
viewsQ: Calculation of T(n)
Could someone explain to me how to calculate the T(n) of this algorithm being n >= 0? I’ve seen videos and classes and I can’t understand how this calculation works. T(n) of an algorithm is how…
-
0
votes1
answer67
viewsQ: Integrar Javascript
I have a questionnaire where the user will answer x questions and will receive a reply at the end, when you click the button "answer". I made the first version where everything is working, except…
-
2
votes1
answer61
viewsA: Close Excel after running Macro vba on Qlikview
Problem solving: obj.Close
-
0
votes1
answer61
viewsQ: Close Excel after running Macro vba on Qlikview
Macro set obj = ActiveDocument.GetSheetObject("CH1") obj.Export "caminho_para_salvar_arquivo" And now I need to close Excel, I used the following command. obj.Close caminho_para_salvar_arquivo' And…
-
0
votes1
answer146
viewsQ: Manipulation of CSV in R
I have several files with the extension . csv, I need to read them all, however I have a problem where I have the following variety of file. df1 -> Cabeçalho numérico antes do cabeçalho atual 1 2…
-
5
votes2
answers200
viewsQ: How to create a Stopwords using R
Hi, I need to do a task and I’m not getting into a logical reasoning. My scenario is: I have a DF with several columns, I need to "read column 3", identify the words and sort. Example: DF nome rua…
-
2
votes1
answer56
viewsQ: Notification from one date to another R
DF = data idade dt nome 2 02-02-2016 Marq 8 05-05-2010 Andre 24 06-06-1994 Sudre 23 25-05-1995 Jaq This is my df, I need to get the name of the person when she turns 24. For example, when she’s 90…
-
2
votes1
answer129
viewsQ: Return in a Dataframe - Python
Good afternoon. I have a question about Python. I have an if where he has the conditional and Else, the Else he processes more than one file and I need to save all the information he reads inside a…
-
1
votes2
answers4274
viewsA: Export table (in pd.Dataframe) to csv - Python format
Example of Pandas.Dataframe documentation: writer = pd.ExcelWriter('output.xlsx') df1.to_excel(writer,'Sheet1') df2.to_excel(writer,'Sheet2') writer.save() Documentation Panda…
csvanswered Brenda Xavier 410 -
0
votes0
answers63
viewsQ: Raise Xlrderror - Indicating Sheet_name Python
Good morning. I’m starting with Python and I have a problem. I have N files in Excel and need to read the sheet_name of each indicating their name, the code I have so far is this: os.chdir("work…
-
3
votes2
answers61
viewsA: Why can’t I display the image selected below in my browser?
I noticed your tag is written scr: The correct is src:
htmlanswered Brenda Xavier 410 -
1
votes2
answers85
viewsQ: Inner Join - SQL Server
Guys, I need someone’s help to understand the mistake you’re making. I have two tables as the code shows, and in one of the tables the column "Code" is with information. I need to enter the codes…
-
1
votes1
answer1036
viewsQ: Remove Duplicates from Two SQL Columns
So the situation is this, I have a table and in it I have three fields, so I need to compare the (to = b) and see if there’s anyone like it. What my problem, I’m new in the middle of sql and I’m not…