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
