Questions tagged as 'csv'

0
answers

How to organize Outlook imported .csv file to create personal calendar event indicator

I want to create a quantity and time indicator spent on meetings based on the imported .csv file from Outlook. I am using the tidyverse and readr packages, but I can not progress to organize the file in a date frame format. Could someone help me...
asked by 14.08.2018 / 17:00
1
answer

How to add elements in a .csv file in python

I'm having a hard time creating an algorithm that adds a third-row element to the CSV file in the Python language. The file has the following data: Serial; Imei; Número; Icc; Stock 869606020314526; 8...
asked by 09.08.2018 / 20:19
1
answer

Import CSV into the Django database

I have a database in CSV and wanted to import into my Django models, CSV has this structure: NAME,CLUB,LEAGUE,POSITION,RATING,PACE,SHOOTING,PASSING,DRIBBLING,DEFENDING,PHYSICAL,LOADDATE Tore Reginiussen,Rosenborg BK,Tippeligaen,CB,82,65,53...
asked by 24.07.2018 / 19:54
0
answers

Import phpmyadmin

Hello, I would like to know, how do I import only a few fields in phpmyadmin. Example: In the database I have the users table, it has the fields, id | name | password | created | modified | home_jornada_work | end_jornada_work. In this...
asked by 06.08.2018 / 15:11
0
answers

Import mongoose object list

I'm trying to save data from a csv file in mongoDB, using mongoose. I need to read row by line, generate an object from that row and supplement it with other data, which comes from the user login session. To work with the csv file, I'm usi...
asked by 26.07.2018 / 16:19
0
answers

Remove quotation marks when uploading csv

I made the following statement to upload a csv to the database: public void importarBaseBruta(File arquivo) { try { this.limparBaseBruta(); this.con.conectar(); this.stm = this.con.getStm(); System.out.print...
asked by 10.07.2018 / 20:41
0
answers

Importing products to Wordpress

I am trying to import a CSV file into Wordpress, but I am not able to do the correct column mapping. The file is about products that I had already registered on another site, and I would not like to register them again. In fact, I do not underst...
asked by 13.07.2018 / 15:51
0
answers

Select columns to export

Ihaveatablewiththefollowingcolumns,whenfilteringitshowstheresultsoftiresfortherespectivecars,butIneededamethodforthecustomertobeabletoselectthecolumnsthathewouldliketoexport,anytips?Theexportcodelookslikethis:publicfunctionexportarCsvVeiculos()...
asked by 14.06.2018 / 20:50
1
answer

I need to read a .csv file and rewrite to another .csv file without stopwords using Python

from nltk.corpus import stopwords from nltk.tokenize import word_tokenize from string import punctuation import csv texto = open('arquivo_sujo.csv','r').read() with open('arquivo_limpo.csv', 'w') as csvfile: palavras = word_tokenize(text...
asked by 16.06.2018 / 00:28
0
answers

I can not download the header from the .csv file

I'm trying to download data from a table in csv format with header but getting the following error: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'Dtremessa' in 'field list' at sun.reflect.NativeConstructorAccessorI...
asked by 28.05.2018 / 17:02