操作系统占比--如果微软退出中国,我们用什么操作系统?

%北太天元 画出 2023年2月份操作系统使用比例
%数据来源: gs.statcounter.com/os-market-share
clear all;
clf;
close all;
hold off
操作系统所占比例 = [43.88 27.71 17.13 6.27 2.43 1.14 1.12 0.2 0.08 0.02 0.02];
n = 1:length(操作系统所占比例);
name = ["Androi(linux)", "微软win", "IOS(unix)", "OS X(unix)", "未知", "linux", "Chrome OS(linux)" "Samsung(linux)" "KaiOS(linux)", "Playstation", "其他"];
bar(n, 操作系统所占比例)
hold on
text(n,操作系统所占比例, name, 'FontName', 'Times-Roman', 'FontSize', 12, 'Color', 'b');
hold off