在R中断轴

时间:2016-01-15 17:00:11

标签: r graph lattice

最近我在使用angular.module('app', ['ngRoute', 'firebase']) .factory('coreData', CoreDataFactory) .controller('MyCtrl', MyController) .config(ApplicationConfig); function CoreDataFactory($firebaseObject, fireroot) { return function(id) { var ref = fireroot.child("elements").child(id).child("core-data"); return $firebaseObject(ref); } } function ApplicationConfig($routeProvider) { $routeProvider.when('/path/:element_id', { controller: 'MyCtrl as ctrl', view: 'view.html', resolve: { data: function(coreData, $route) { return coreData($route.current.params.element_id).$loaded(); } } }); } function MyController(data) { this.coreData = data; } 表示某些数据时遇到了一些问题。一切看起来都非常好但我的老板让我打破了轴(我不是很喜欢断轴)。到目前为止,我已经能够使用函数xyplot执行此操作,但是面板的顺序是如此混乱,以至于读取信息是不可能的。另外,我想在图形上仅显示变量shingle而不是cs(我的示例data.frame中指定的信息)。然后,真正的挑战是将所有这些要求固定到格子中,格子是组中图形的内部标准。

以下是我的示例data.frame(http://1drv.ms/1JOKSPU)代码示例:

st

这就是我得到的: AS can be noticed upper line has the times higher than 24h and the lower line the lower times. My target is to make a continuum with an hypothetic panel 1( cs=X t0-t15) and next to it a narrower panel 2 ( cs=X t23-t26)

提前,对不起,如果我的问题的提法有任何错误,我没有编程背景,这是我的第三个问题。

干杯;

1 个答案:

答案 0 :(得分:0)

您希望通过st然后cs。所以试试xyplot( logOD~t|st+cs,

如果需要,可以使用layout=c(4,3)。如果您希望它从左上角开始,请as.table=TRUE