python basics | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

python basics

can someone pls help me solve the first project in machine learning (python basics). it’s about getting a column from a numpy array. im a beginner. thanks in adv. this is my code attempt: import pandas as pd pd.options.display.max_columns = 2 df = pd.read_csv('https://sololearn.com/uploads/files/one.csv') arr = df['a'].values print(arr)

14th Jan 2023, 2:52 PM
Ophelia luna
4 Answers
+ 3
When you start the code assignment there would be some default piece of code prepared for you. It serves a purpose, but you seem to have removed it. filename = input() column_name = input() You can reset the code to the start, using the three dots menu in the code editor. These two lines will read the data from each test case automatically, you just have to write the code to process it. Try to use these inputs as parameters to the rest of your code.
14th Jan 2023, 3:44 PM
Tibor Santa
Tibor Santa - avatar
+ 2
thank you so much for your help!
14th Jan 2023, 3:57 PM
Ophelia luna
+ 1
I didn’t know what tags are for. Thank you for the information!
14th Jan 2023, 4:30 PM
Ophelia luna
0
For future reference, here's an intro about usage of tags in forum. I see your questions were tagged with 'tag' only, so hopefully this introduction helps you understand tags purpose https://code.sololearn.com/W3uiji9X28C1/?ref=app
14th Jan 2023, 4:04 PM
Ipang