Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
-1 votes
0 answers
44 views

How to split a info in a single row in excel into columns using python [duplicate]

I have read a CSV file using pd.read_csv() I am trying to clean up this data but it is proving a bit difficult. Essentially all of the information is in a single column and row 1 and I need to split ...
rogue1's user avatar
  • 1
-1 votes
0 answers
25 views

NameError Traceback (most recent call last) <ipython-input-3-9ec55f7a7976> in <module> : NameError: name 'books' is not defined

I am trying to plot the evolution of degree centrality over the books for some of the characters from Game of Thrones .I have a list evol that contains the computed degree centrality from all the ...
acharyabibash's user avatar
0 votes
1 answer
90 views

Is there a way to choose which cell/column of a CSV to upload a dataframe into, just like scraping data onto an excel file?

I have had experience with webscraping data onto excel files, and I know that when copying data down into an excel spreadsheet, you can choose which column to copy it into. (startcol = 10 as shown in ...
NNBananas's user avatar
  • 153
0 votes
2 answers
35 views

Multi-line fields and inserting columns

We need to import our passwords from a format that is not explicity understood by Bitwarden. The old tool exports to CSV, and I've build a simple Python script to change some column names as well as ...
user3611658's user avatar
3 votes
1 answer
86 views

How to compare rows within the same csv file faster

I have a csv file containing 720,000 rows with and 10 columns, the columns that are relevant to the problem are ['timestamp_utc', 'looted_by__name', 'item_id', 'quantity'] This File is logs of items ...
banom's user avatar
  • 41
-1 votes
0 answers
51 views

How do i search two files to know if the values are similar or not

I have two CSV files that I want to compare their contents and print the contents that doesn't have the same data. Most contents will have the same name but not all their data are accurate. I want to ...
BlakOuz's user avatar
  • 109
1 vote
1 answer
31 views

Reading .csv column with decimal commas and trailing percentage signs as floats using Pandas

I am faced with reading a .csv file with some columns like this: Data1 [-]; Data2 [%] 9,46;94,2% 9,45;94,1% 9,42;93,8% I want to read Data1 [%] column as a pandas DataFrame with values [94.2, 93.4, ...
Toivo Säwén's user avatar
-4 votes
0 answers
70 views

How to split CSV data with newline, commas, quotes in the column of data? [closed]

I want to split the data line by line, but I am receiving newline and quotes in the data which is not allowing me that to split it by either newline. CSV Data Received: ISSUE ID,FACTOR NAME,ISSUE TYPE ...
Aditya's user avatar
  • 1
-2 votes
0 answers
31 views

Create a csv file from a list of objects and each row correspond three objects [duplicate]

I got a file that looks like this Name address number James Avn philips 2 555 555 55 Peter Colton 34 postmen 444 444 44 Claudia Rainssaw 345 sq three 333 333 33 How can I convert in a csv like this: ...
Sallyerik's user avatar
  • 505
0 votes
2 answers
61 views

Python Pandas extract csv column containing json

I want to learn Pandas framework, so I find free csv with Euro data from kaggle.com https://www.kaggle.com/datasets/piterfm/football-soccer-uefa-euro-1960-2024/data But there're plenty of columns ...
Łukasz's user avatar
1 vote
2 answers
105 views

Is there a Pandas idiom for reading a CSV file with categorical data that has spelling variants?

I have a CSV file with multiple categorical columns, but most of these columns contain messy data due to typing mistakes (e.g., 'spciulated', 'SPICULATED', etc. for the category 'spiculated' of the ...
Alek Fröhlich's user avatar
0 votes
1 answer
42 views

Optimal way to "rotate" contents of a datafile? [duplicate]

I have very large datafiles (csv files that are several GB a piece, roughly a 3059 by 40-80k long table) that are used for constructing images from spectroscopy data. They're standard tab delimited ...
Levi Friss's user avatar
0 votes
2 answers
29 views

Pandas csv_read interprets empty values as row headers

let's say I have a data like: parameter1 parameter2 2010 2011 2012 A B foo foo foo C foo foo foo D foo foo foo M N ...
tikej's user avatar
  • 303
0 votes
1 answer
21 views

Columns of Data missing on Google Sheet file after upload

I have this program that is supposed to take some csv files using pandas and convert them to google sheet files and upload them to my Google Drive folder. However, when uploaded, only the last 8 ...
Gabriel A. Colón Sánchez's user avatar
1 vote
1 answer
43 views

Convert TSV file data to a dataframe, which can be pushed to database

We have TSV files which holds IOT data, want to convert to table like structure using pandas. I have worked on TSV data, similar to given below, were the logics goes like read the file Add new column ...
Kavya shree's user avatar

15 30 50 per page
1
2 3 4 5
732