nominalplot
This commit is contained in:
12
statistics/matlab/nominal_plots.m
Normal file
12
statistics/matlab/nominal_plots.m
Normal file
@@ -0,0 +1,12 @@
|
||||
close all
|
||||
% cell type
|
||||
bar([1,2], [50, 90], 'facecolor', 'k')
|
||||
ylabel('cell count')
|
||||
xlabel('cell type')
|
||||
xlim([0.5,2.5])
|
||||
ylim([0, 100])
|
||||
box('off')
|
||||
set(gca,'XTick',1:2,'XTickLabel',{'pyramidal', 'interneuron'},'FontSize',20)
|
||||
set(gcf, 'PaperUnits', 'centimeters');
|
||||
set(gcf, 'PaperSize', [11.7 9.0]);
|
||||
set(gcf, 'PaperPosition',[0.0 0.0 11.7 9.0]);
|
||||
Reference in New Issue
Block a user