how to load data set from a website in matlab
    19 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
Hi,
or https://archive.ics.uci.edu/ml/machine-learning-databases/wine/
I am not able figure out what is the right way to load this data in the Matlab. I will be thankful if someone can explain
0 comentarios
Respuestas (1)
  Rashed Mohammed
    
 el 18 de Mzo. de 2021
        Hi Aisha,
If you want to load the wine data set directly from the link, you can use the webread function, else if you want to load the wine data set after downloading the file from the link, you can use the load function. Below is the sample code for the same.
Load data directly from URL
url = 'https://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data';
options = weboptions('ContentType','table','ContentReader',@load);
data = webread(url,weboptions);
Load data from downloaded file
data = load('wine.data');
Hope this helps
1 comentario
  SAIKUMAR R
 el 16 de Sept. de 2021
				can't read such files. while loading such file it displays  "error using load"
Ver también
Categorías
				Más información sobre Downloads en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


