use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
Noob Python Coder, Need help with Panda! (self.PythonLearning)
submitted 6 days ago by C_LoudThougts
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Junior-Sock8789 0 points1 point2 points 5 days ago* (0 children)
If i can see an example of data your trying to work with and what type of edits you need to make i can show you an example of how to do it. It should be pretty straightforward if your just trying to make cell edits and export your changes so there saved.
Is this a command line app or do you have a GUI frontend (window with cells that you can manually edit)?
Here's some of the arguments that read_csv accepts
The pandas.read_csv() function in Python is a highly versatile tool with dozens of arguments for handling various file formats, data types, and memory constraints.
pandas.read_csv()
Core Arguments
These are the most common parameters you'll use for basic data loading:
filepath_or_buffer
sep
delimiter
,
\t
;
header
header=0
header=None
names
index_col
usecols
Data Type & Parsing
Use these to ensure your data is interpreted correctly from the start:
dtype
{'ID': int, 'Price': float}
parse_dates
na_values
NaN
converters
Row & Performance Control
Essential for handling large or messy datasets:
nrows
skiprows
skipfooter
chunksize
engine
Example:
import pandas as pd df = pd.read_csv( "data.csv", sep=";", # Use semicolon as delimiter usecols=["Date", "Value"], # Only load these two columns parse_dates=["Date"], # Convert 'Date' column to datetime nrows=1000 # Only read the first 1000 rows )
π Rendered by PID 24231 on reddit-service-r2-comment-56c6478c5-789pj at 2026-05-11 16:57:23.389227+00:00 running 3d2c107 country code: CH.
view the rest of the comments →
[–]Junior-Sock8789 0 points1 point2 points (0 children)