gpt4 book ai didi

gnuplot - 如何修改由 GNUPlot 创建的饼图

转载 作者:行者123 更新时间:2023-12-04 19:01:21 26 4
gpt4 key购买 nike

输入:
我有一个 myfile.csv包含以下信息的文件:

Shift,Percentage
Day Shift, 39.94
Night Shift, 60.06
GNUPlot 处理: myfile.csv文件被送入 pie_chart_generator.gnuplot文件是:
#!/usr/bin/gnuplot -persist
reset
set title "\n"
set label 1 "My Pie Chart\nShift Usage Break Down" at graph 0,1.125 left
set terminal wxt
unset key
set datafile separator ","
set terminal png
set size square
set output "piechart.png"
stats 'myfile.csv' u 2 noout # get STATS_sum (sum of column 2)

ang(x)=x*360.0/STATS_sum # get angle (grades)
perc(x)=x*100.0/STATS_sum # get percentage

#set size square # square canvas
set xrange [-1:1.5]
set yrange [-1.25:1.25]
set style fill solid 1

unset border
unset tics
unset key

Ai = 0.0; Bi = 0.0; # init angle
mid = 0.0; # mid angle
i = 0; j = 0; # color
yi = 0.0; yi2 = 0.0; # label position


plot 'myfile.csv' u (0):(0):(1):(Ai):(Ai=Ai+ang($2)):(i=i+6) with circle linecolor var
并以此作为 reference 创建.
图表当前输出:
此代码生成此饼图:
Output .png pie chart
问题:
Q1:如何以 RGB 格式为图形的每个扇区分配颜色?
Q2:有没有办法将标签放在右上角?
Q3:如何将值放置在图表上?
图表的理想输出:
enter image description here
附录:
我在答案的帮助下进一步改进了我的代码。答案中的代码对我来说并不安静,所以我不得不将其调整为:
#!/usr/bin/gnuplot -persist
reset

dataname = 'myfile.csv'
set datafile separator ','

# Get STATS_sum (sum of column 2) and STATS_records
stats dataname u 2 noout

# Define angles and percentages
ang(x)=x*360.0/STATS_sum # get angle (grades)
perc(x)=x*100.0/STATS_sum # get percentage

# Set Output
set terminal png
set output "piechart.png"
set size square

# Print the Title of the Chart
set title "\n"
set label 1 "My Pie Chart\nShift Usage Break Down" at graph 0,1.125 left

#set terminal wxt
unset key
set key off

set xrange [-1.5:1.5]
set yrange [-1.5:1.5]
set style fill solid 1

unset border
unset tics
unset colorbox

# some parameters
Ai = 5.0; # Initial angle
mid = 0.0; # Mid angle

# This defines the colors yellow~FFC90E, and blue~1729A8
# Set palette defined (1 '#FFC90E', 2 '#1729A8') # format '#RRGGBB'
set palette defined (1 1 0.788 0.055, 2 0.090 0.161 0.659) # format R G B (scaled to [0,1])


plot for [i=1:STATS_records] dataname u (0):(0):(1):(Ai):(Ai=Ai+ang($2)):(i) every ::2 with circle linecolor palette,\
dataname u (mid=(Ai+ang($2)), Ai=2*mid-Ai, mid=mid*pi/360.0, -0.5*cos(mid)):(-0.5*sin(mid)):(sprintf('%.2f\%', $2, perc($2))) w labels center font ',10',\
for [i=1:STATS_records]dataname u (1.45):(i*0.25):1 every ::1 with labels left,\
for [i=1:STATS_records] '+' u (1.3):(i*0.25):(i) pt 5 ps 4 lc palette

# first line plot semicircles: (x):(y):(radius):(init angle):(final angle):(color)
# second line places percentages: (x):(y):(percentage)
# third line places the color labels
# fourth line places the color symbols
unset output
图表当前输出来自上面的代码 :
enter image description here
附录问题:
Q4:我在标签/标题方面遇到了巨大的困难。我已经尝试了答案中的代码我得到了相同的结果。如何打印标题而不相互打印?

最佳答案

post you cited已经建议了一种放置标签和百分比值的方法。让我逐点解释实现这一目标的步骤。最后我写了完整的脚本。

Q3: How can I place the value on the chart?



每个切片都定义在两个角度内 (Ai,Af) .百分比值应该放在每个值的中间,在 (x,y)=(0.5*cos(mid), 0.5*sin(mid)) ,其中 mid=0.5*(Ai+Af)是中点角, 0.5表示饼图半径的一半。

对于第一个条目,我们可以设置 Ai=0 ,和角度 Af根据您的数据计算为 Af=ang($2) ,其中 ang(x)在您的脚本中定义。
对于第二个条目,我们更新 Ai=Af并再次计算 Af=ang($2) , 等等。

最后,以下行应放置百分比:
plot 'myfile.csv' u (mid=Ai+ang($2), Ai=2*mid-Ai, mid=mid*pi/360.0, -0.5*cos(mid)):(-0.5*sin(mid)):(sprintf('%.2f\%', $2, perc($2))) every ::1 w labels center font ',10'

注:第一个括号 (mid=Ai+ang($2), Ai=2*mid-Ai, mid=mid*pi/360.0, -0.5*cos(mid))计算角度 Aimid ( Af其实不需要),然后返回坐标 x=-0.5*cos(mid) .

警告: x 轴和 y 轴 必须具有相同的范围:
set xrange [-1.5:1.5]
set yrange [-1.5:1.5]

Q2: Is there a way I can place the the labels on the right hand corner?



对于彩色方块,您可以在固定 x 和等距 y 值处绘制点:
for [i=1:STATS_records] '+' using (1.3):(i*0.25):(i) pt 5 ps 4 linecolor palette

哪里 STATS_records是文件的行数(您已经用 stats 'myfile.csv' 计算了)。这一行使用了一个伪文件“+”,使用规范有三列 (x):(y):(color) ,其中 x=1.3固定, y=i*0.25i=1,2,3,...,STATS_records , 和 color=ilinecolor palette 使用.这些点是具有 4 个像素长度 ( pt 5 ) 的填充方块 ( ps 4 )。颜色的绘制顺序与各个饼图切片的顺序相同。

可以使用以下方法绘制每种颜色的标签:
plot for [i=1:STATS_records] 'myfile.csv' u (1.45):(i*0.25):1 every ::i::i with labels center font ',10'

其中使用规范有列 (x):(y):(name) . x=1.45值略大于之前使用的值,并且 y=i*0.25必须与彩色方块的相同。 name=$1with labels 使用的第 1 列中提取字符串.

注:您可以使用 with labels font 'Arial,10' 控制标签的字体和大小。 .您可以将字体名称省略为 font ',10' .

Q1: How can I assign colours to each of the sectors of the graph in RGB format?



在最后一个命令中,我使用 linecolor palette ,允许我们定义颜色
set palette defined (1 1 0.788 0.055, 2 0.090 0.161 0.659)

我使用 RGB 中的颜色,缩放为 [0,1](类黄色为 1 0.788 0.055;类蓝色为 0.090 0.161 0.659)。

注:现在应该绘制饼图:
plot for [i=1:STATS_records] dataname u (0):(0):(1):(Ai):(Ai=Ai+ang($2)):(i) every ::i-1::i-1 with circle linecolor palette

这是我用你的数据得到的

pie-chart

这是完整的脚本:
#!/usr/bin/gnuplot -persist
reset

dataname = 'myfile.csv'
set datafile separator ','

# get STATS_sum (sum of column 2) and STATS_records
stats dataname u 2 noout

#define angles and percentages
ang(x)=x*360.0/STATS_sum # get angle (grades)
perc(x)=x*100.0/STATS_sum # get percentage

# output
set terminal png
set output 'piechart.png'
set size square

set title "\n"
set label 1 "My Pie Chart\nShift Usage Break Down" at graph 00.5,0.95 left

set xrange [-1.5:2.5] # length (2.5+1.5) = 4
set yrange [-2:2] # length (2+2) = 4
set style fill solid 1

# unset border # remove axis
unset tics # remove tics on axis
unset colorbox # remove palette colorbox
unset key # remove titles

# some parameters
Ai = 15.0; # init angle
mid = 0.0; # mid angle

# this defines the colors yellow~FFC90E, and blue~1729A8
# set palette defined (1 '#FFC90E', 2 '#1729A8') # format '#RRGGBB'
set palette defined (1 1 0.788 0.055, 2 0.090 0.161 0.659) # format R G B (scaled to [0,1])


plot for [i=1:STATS_records] dataname u (0):(0):(1):(Ai):(Ai=Ai+ang($2)):(i) every ::i::i with circle linecolor palette,\
dataname u (mid=(Ai+ang($2)), Ai=2*mid-Ai, mid=mid*pi/360.0, -0.5*cos(mid)):(-0.5*sin(mid)):(sprintf('%.2f\%', $2, perc($2))) ever\
y ::1 w labels center font ',10',\
for [i=1:STATS_records] dataname u (1.45):(i*0.25):1 every ::i::i with labels left,\
for [i=1:STATS_records] '+' u (1.3):(i*0.25):(i) pt 5 ps 4 lc palette

# first line plot semicircles: (x):(y):(radius):(init angle):(final angle):(color)
# second line places percentages: (x):(y):(percentage)
# third line places the color labels
# fourth line places the color symbols
unset output

更新:原版 myfile.csv有一个标题(第一行 Shift,Percentage ),gnuplot 不能正确读取。我们可以通过注释来忽略这一行(添加一个 # 字符,例如 # Shift,Percentage ),或者放置一个 every命令从绘图行中的 1 开始:
plot for [i=1:STATS_records] dataname u (0):(0):(1):(Ai):(Ai=Ai+ang($2)):(i) every ::i::i with circle linecolor palette,\
dataname u (mid=(Ai+ang($2)), Ai=2*mid-Ai, mid=mid*pi/360.0, -0.5*cos(mid)):(-0.5*sin(mid)):(sprintf('%.2f\%', $2, perc($2))) ever\
y ::1 w labels center font ',10',\
for [i=1:STATS_records] dataname u (1.45):(i*0.25):1 every ::i::i with labels left,\
for [i=1:STATS_records] '+' u (1.3):(i*0.25):(i) pt 5 ps 4 lc palette

关于gnuplot - 如何修改由 GNUPlot 创建的饼图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36783738/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com