Python Forum
How from sklearn.datasets import load_diabetes change to import to CSV file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How from sklearn.datasets import load_diabetes change to import to CSV file
#1
#I test and check some predictions on the Hospital data set on CSV file rather than loading data set like diabetes data set.
## I want to import a CSV file instead of load as -----> Where sklearn should be kept in mind for data preprocessing
 from sklearn.datasets import load_diabetes 
How such changes had been made while remove load_diabetes and add a csv file i search but i did not find such answer
import numpy as np
from sklearn.datasets import load_diabetes
seed = 43
np.random.seed(seed)
print("Loading data")
    diabetes = load_diabetes()
    y = diabetes.target
    X = diabetes.data
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  I'm trying to import a dataset into a Jupyter Notebook Hisilat03 0 688 Mar-24-2025, 09:26 AM
Last Post: Hisilat03
  How can I write formatted (i.e. bold, italic, change font size, etc.) text to a file? JohnJSal 12 27,770 Feb-13-2025, 04:48 AM
Last Post: tomhansky
  beginner doesn't understand import cimerio 3 461 Feb-12-2025, 05:02 PM
Last Post: cimerio
  How to write variable in a python file then import it in another python file? tatahuft 4 846 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  Python: How to import data from txt, instead of running the data from the code? Melcu54 1 590 Dec-13-2024, 06:50 AM
Last Post: Gribouillis
  python 3.13 : import whois HansieB 1 594 Nov-30-2024, 02:58 PM
Last Post: snippsat
Question [SOLVED] Why "import foo" + "from foo import bar"? Winfried 4 1,202 Nov-26-2024, 08:13 AM
Last Post: Winfried
  [SOLVED] [Linux] Write file and change owner? Winfried 6 1,461 Oct-17-2024, 01:15 AM
Last Post: Winfried
  import data (.csv) into Jupyter notebook oranstprotonme 2 1,125 Aug-14-2024, 07:08 PM
Last Post: oranstprotonme
  'import requests' problem Curbie 2 752 Aug-14-2024, 01:04 AM
Last Post: Curbie

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020