Combining and Visualizing two histograms
    8 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
Hi,
I am having histogram plot of (x,y) =(15, 1000), this belongs to one class. And also I am having histogram plot of (x,y) = (15, 1500) of another class. (here, x axis same, but y axis different). I need to combine these two plots in a single plot separating each class. How can I do that? Pease help me with this. Thanks in advance.
1 Commento
Risposta accettata
  Abderrahim. B
      
 il 12 Lug 2022
        
      Modificato: Abderrahim. B
      
 il 12 Lug 2022
  
      Hi! 
Use hold on, will be displayed in 2 different colors.
Example 1:
x = randi(10,20,1) ;
y = randi(10,20,1) ;
histogram(x);
hold on
histogram(y);
Example 2: 
Use bar function
figure
bar([x, y], 'stacked')
legend x y
2 Commenti
  Abderrahim. B
      
 il 12 Lug 2022
				
      Modificato: Abderrahim. B
      
 il 12 Lug 2022
  
			I edited my answer. Check it and let me know if this is what you are trying  to do!
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Histograms in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

