How to indicate p < 0.05 interval in a line graph?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
James Chen
el 27 de Mayo de 2022
Editada: Nihal Reddy
el 15 de Feb. de 2023
Hi, I am new to MATLAB, I wonder how can we use MATLAB to plot graphs like this one:
where the small orange rectangles inside the plotting area indicate p < 0.05; line width reflects ± SEM.
Respuesta aceptada
Nihal Reddy
el 1 de Jun. de 2022
Editada: Nihal Reddy
el 15 de Feb. de 2023
From my understanding you want to plot a graph like the one in the image shared. For plotting graphs which fill the areas between the curves you can use “area” function.
You can refer to the following sample example-
x = [0.25 0.5 0.75 1];
Y = [0.4 0.2; 0.5 0.7; 0.1 0.9; 0.4 0.3];
area(x,Y)
xlabel('Time(s)')
ylabel('Representation Similarity')
For more information related to the “area” function you can use the following MATLAB documentation link-
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots 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!