Python Forum

Full Version: [split] Locate and open csv file
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello somebody, i am runung a code using anaconda the code is as follows:
import pandas as pd
import numpy as np
import random

from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.linear_model import LogisticRegression
from sklearn.model_selection import train_test_split

urls_data = pd.read_csv("urldata.csv")
type(urls_data)
urls_data.head()
where am i to insert the file named "urldata.csv" in the code above because it keeps telling me file not find, thks
The file is expected to be in the same location (folder) as the script. If you want it to be in different location, then you need to specify the full path.
note that lines 10-11 will not produce any visible result. I expect you want to print these
The file is in the same script folder yet it keeps giving me "file location not find" error, what have i not done right, thanks
please, post the full traceback in error tags.