Hello:
I have a doubt about a CSV file.
Load the dataset from a URL
url = ‘https://raw.githubusercontent.com/mwaskom/seaborn-data/master/iris.csv’
df = pd.read_csv(url)
Do I take the advantage of vectorization/GPU automatically? Or I have to copy data from the CSV file to vectors?
Thank you !