- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的问题是有没有办法制作 horizontal gnuplot中的直方图?
以下是直方图的组成数据集:
sample M N O P Q R S T Total
A 39.17 8.33 11.07 8.57 22.20 22.93 1.47 1.13 114.87
B 61.68 15.53 16.23 15.55 35.68 36.35 2.32 2.23 185.58
C 30.20 7.35 7.55 7.48 16.90 17.50 1.18 1.10 89.25
D 12.57 5.18 4.98 5.77 9.88 8.18 0.67 0.83 48.07
E 36.80 9.00 11.07 9.43 21.43 22.63 0.93 1.03 112.33
F 62.05 15.57 15.95 15.70 35.68 36.63 2.27 2.47 186.32
G 30.23 7.33 7.55 7.48 17.10 17.68 1.10 1.25 89.70
H 12.97 4.87 5.22 5.18 10.37 7.90 0.98 0.70 48.18
I 17.67 12.80 9.40 5.67 32.47 18.53 1.13 0.63 98.30
J 72.30 13.70 17.43 15.43 30.62 38.43 2.25 2.43 192.60
K 25.70 7.58 12.45 4.60 19.30 18.88 1.10 0.80 90.40
L 16.15 3.80 3.53 10.43 7.27 8.80 0.88 1.10 51.97
set terminal png font "Times-Roman,9"
set output 'sample.png'
set border 3 front linetype -1 linewidth 1.000
set boxwidth 0.85 absolute
set style fill solid 1.00 border lt -1
set grid nopolar
set grid noxtics nomxtics ytics nomytics noztics nomztics \
nox2tics nomx2tics noy2tics nomy2tics nocbtics nomcbtics
set grid layerdefault linetype 0 linewidth 1.000, linetype 0 linewidth 1.000
set key outside right top vertical Left reverse noenhanced autotitles columnhead nobox
set key invert samplen 4 spacing 1 width 0 height 0
set style histogram rowstacked title offset character 0, 0, 0
set datafile missing '-'
set style data histograms
#set style histogram gap 1
set xtics border in scale 0,0 nomirror rotate by -45 offset character 0, 0, 0 autojustify
set xtics norangelimit font ",8"
set xtics ()
#set noytics
set ylabel "% of total"
set yrange [ 0 : 100 ] #noreverse nowriteback
plot 'sample.txt' using (100.*$2/$10):xtic(1) t column(2), for [i=3:9] '' using (100.*column(i)/column(10)) title column(i)
最佳答案
这是一个很老的问题,但仍然没有答案。
正如@Christoph 所建议的,绘图风格 boxxyerror
是解决方法的方法。
但是,到目前为止我还没有看到示例代码,例如在 gnuplot 演示页面上。
据我所知,gnuplot 5.2.8 和可能的 5.4 仍然没有绘图样式水平堆叠直方图(如果我错了,请纠正我)。
实际上,“Total”列不是必需的,因为 gnuplot 可以自动计算总和。
代码: (gnuplot >=5.2)
### horizontal stacked histogram
reset session
$Data <<EOD
sample M N O P Q R S T Total
A 39.17 8.33 11.07 8.57 22.20 22.93 1.47 1.13 114.87
B 61.68 15.53 16.23 15.55 35.68 36.35 2.32 2.23 185.58
C 30.20 7.35 7.55 7.48 16.90 17.50 1.18 1.10 89.25
D 12.57 5.18 4.98 5.77 9.88 8.18 0.67 0.83 48.07
E 36.80 9.00 11.07 9.43 21.43 22.63 0.93 1.03 112.33
F 62.05 15.57 15.95 15.70 35.68 36.63 2.27 2.47 186.32
G 30.23 7.33 7.55 7.48 17.10 17.68 1.10 1.25 89.70
H 12.97 4.87 5.22 5.18 10.37 7.90 0.98 0.70 48.18
I 17.67 12.80 9.40 5.67 32.47 18.53 1.13 0.63 98.30
J 72.30 13.70 17.43 15.43 30.62 38.43 2.25 2.43 192.60
K 25.70 7.58 12.45 4.60 19.30 18.88 1.10 0.80 90.40
L 16.15 3.80 3.53 10.43 7.27 8.80 0.88 1.10 51.97
EOD
set xlabel "% of total"
set xrange [0:103]
set yrange [:] reverse
set offsets 0,0,0.5,0.5
set style fill solid 1.0
set key out
ColCount = 8
myBoxwidth = 0.8
plot for [col=2:ColCount+1] $Data u col:0: \
(total=(sum [i=2:ColCount+1] column(i)),(sum [i=2:col-1] column(i)/total*100)): \
((sum [i=2:col] column(i))/total*100): \
($0-myBoxwidth/2.):($0+myBoxwidth/2.):ytic(1) w boxxyerror ti columnhead(col)
### end of code
结果:
Data.dat
中的数据)
### horizontal stacked histogram, version for gnuplot 4.6
reset
FILE = "Data.dat"
set xlabel "% of total"
set xrange [0:103]
set yrange [:] reverse
set offsets 0,0,0.5,0.5
set style fill solid 1.0
set key out
ColCount = 8
myBoxwidth = 0.8
plot for [col=2:ColCount+1] FILE u col:0: \
(total=(sum [i=2:ColCount+1] column(i)),(sum [i=2:col-1] column(i)/total*100)): \
((sum [i=2:col] column(i))/total*100): \
($0-myBoxwidth/2.):($0+myBoxwidth/2.):ytic(1) w boxxyerror ti columnhead(col)
### end of code
关于plot - 水平(横向)直方图 - gnuplot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19800832/
即使我的设备旋转(纵向->横向->纵向),我也需要始终以横向模式录制视频。 取角度很简单,我用的是hyroscope。我的问题是总是横向录制视频。需要任何建议。 我正在使用 AVCaptureSess
我正在 iPad(1,2) 以及 Samsung Tab 2 上测试我的网络应用程序。我有不同的 CSS(外部)集可应用于 iPad 上的横向/纵向模式和选项卡 2 上的横向/纵向模式。 但我无法为
我正在将Snappy Bundle和Symfony 2.1一起使用。 我有一些问题未在此捆绑包的文档中找到: 如何设置方向? 有没有显示页码的方法? 这是我的捆绑包的config.yml: knp_s
我一直在寻找这个问题的答案,但找不到任何答案。显然,iPhone SDK 3.0 使得 UIImagePickerController 可以以横向模式显示成为可能 - 但我没有找到任何允许这样做的方法
我有 1 个 Storyboard,我在 Swift 3 中的 Xcode 8 上使用带有大小类的自动布局。 我有这个当前的肖像 View : 目前,这是 1 个带有标签的垂直堆栈 View 。 在横
我正为这个而焦头烂额。基本上,我需要我的菜单根据菜单的内容水平放置一个容器。所以,我知道 table 和 table-cell 属性可以做到这一点。但是,当我将其与 Superfish Menu 结合
我努力做到这一点: 但我无法正确获取第三列和翻转的标题。 我现在是这样的: 最佳答案 该解决方案适用于 IE9、Chrome、Firefox、Safari 和 Opera,不需要 JavaScrip
我想要一个水平方向的 WPF DataGrid,有人知道解决方案吗? 最佳答案 我之前已经这样做了,因为我们希望能够对 DataGrid 和 PropertyGrid 使用相同的控件。很多事情都必须改
我正在开发一个适用于智能手机的网站版本,在处理智能手机横向方向的媒体查询时遇到了一个小问题。对于纵向,我正在使用以下媒体查询并且它工作得很好: @media only screen and (max-
如何让“AVCaptureVideoPreviewLayer”在横向方向上正确显示?它在纵向模式下工作正常但不旋转,并且当父 View Controller 处于横向模式时显示旋转的相机捕获。 最佳答
这个问题在这里已经有了答案: Force "portrait" orientation mode (12 个回答) 关闭2年前。 我的第一款 Android 游戏即将完成,但我遇到了一个非常简单的问题
我的数据在其中一个字段中具有嵌套映射。例如,数据位于名为“customers”的表中,如下所示: 姓名:比尔·琼斯 地址:{"billing":{"street":"123 Main", "city"
我正在横向模式下运行应用程序。我需要注意什么才能使拍摄的屏幕截图也处于横向模式。 我在 iPhone 应用程序中使用以下代码,底部有标签栏并拍摄屏幕截图,但它始终仅处于纵向模式。为什么? UIWind
谁能举例说明如何将单点触控应用程序的 View 从纵向旋转为横向,反之亦然? 最佳答案 如果您在 Interface Builder 中设置 ui 元素的几何形状,请确保在 Size Inspecto
我正在使用简单的 MPMoviePlayerController。在纵向模式下,它嵌入到我的布局中。当我旋转我的设备时,我希望它全屏显示。在全屏模式下,有一个完成按钮,但它唯一的作用就是暂停视频。当点
我正在尝试读取 JSON 模式,但似乎无法弄清楚如何将所有先前对象等输出到层次结构中。 这是JSON响应方案 { "Shopping": { "Orders": { "OrderInfo": {
我想在我的布局中包含一个 SlidingDrawer,但我会将它放在布局的侧面。所以开口是从左到右,而不是从下往上。这怎么办? 最佳答案 this link可能会帮助您创建水平滑动抽屉。如果您正在使用
就在我以为我已经解决了所有问题时..我遇到了这个问题。 场景。 我有一个简单的 tableView。并在导航项的 titleView 中带有搜索栏。 SearchBar 通过 View Control
我有一个带有 MGSplitView 的应用程序,其中包含表格 View 和 UIWebView,该应用程序固定为横向。 Web View 有一个附加到 Web View 的 UITapGesture
我有一部 iPhone,我正在添加横向支持。之前只是肖像。 当键盘显示时,我无法将文本字段移开。 我使用的解决方案与记录在案的 Apple 解决方案非常相似 here . 该解决方案在纵向模式下工作正
我是一名优秀的程序员,十分优秀!