Displaying 20 results from an estimated 94 matches for "23,11".
Did you mean:
23,13
2009 Sep 19
3
graphing help
Hello:
I am very new to "R", and I am trying to plot a large data set. I
would like to get a line graph. My data looks like this in a csv file
(no header):
07/03/23,05:00,23
07/03/23,06:00,32
07/03/23,07:00,33
07/03/23,08:00,25
07/03/23,09:00,26
07/03/23,10:00,21
07/03/23,11:00,23
07/03/23,12:00,24
07/03/23,13:00,25
07/03/23,14:00,29
07/03/23,15:00,23
07/03/23,16:00,23
TIA
2015 May 13
1
Why is the diag function so slow (for extraction)?
...ng gray matter), is.object()
is better suited for this test;
$ svn diff src/library/base/R/diag.R
Index: src/library/base/R/diag.R
===================================================================
--- src/library/base/R/diag.R (revision 68345)
+++ src/library/base/R/diag.R (working copy)
@@ -23,9 +23,11 @@
stop("'nrow' or 'ncol' cannot be specified when 'x' is a matrix")
if((m <- min(dim(x))) == 0L) return(vector(typeof(x), 0L))
+ nms <- dimnames(x)
+ nrow <- dim(x)[1L]
## NB: need double index to avo...
2015 May 12
2
Why is the diag function so slow (for extraction)?
>>>>> Steve Bronder <sbronder at stevebronder.com>
>>>>> on Thu, 7 May 2015 11:49:49 -0400 writes:
> Is it possible to replace c() with .subset()?
It would be possible, but I think "entirely" wrong.
.subset() is documented to be an internal function not to be
used "lightly" and more to the point it is documented to *NOT*
2013 Mar 13
2
How to read a *.csv file in R?
...2,3 NULL 63,6 -19,1
May 86 14 NULL 61,5 -20,9
June 86 11,8 NULL 59,8 -20,7
July 86 9,4 NULL 57,2 -19,3
Aug.86 13,2 NULL 55,5 -18,3
Sep.86 14,2 NULL 57,5 -15,1
Oct. 86 13,7 NULL 55,5 -14,1
Nov.86 14,4 NULL 54,9 -14,9
Dec. 86 15,7 NULL 52,9 -26,4
Jan. 87 18,3 -18,67 49,8 -26,87
Feb.87 17,3 1,76 49,9 -23,11
Mar. 87 17,8 29,93 49,7 -25,38
Apr.87 18 46,34 50,5 -20,6
May 87 18,6 32,86 52,3 -14,96
June 87 18,8 59,32 53,5 -10,54
July 87 19,8 110,64 54,5 -4,72
Aug.87 18,9 43,18 55,3 -0,36
Sep.87 18,2 28,17 55,1 -4,17
Oct. 87 18,6 35,77 57,8 4,14
Nov.87 17,7 22,92 55,5 1,09
Dec. 87 16,8 7,01 56,5 6,81
Jan...
2016 Dec 08
3
[PATCH] linux/types.h: enable endian checks for all sparse builds
...my tree as a replacement for enabling
this just for virtio.
include/uapi/linux/types.h | 4 ----
1 file changed, 4 deletions(-)
diff --git a/include/uapi/linux/types.h b/include/uapi/linux/types.h
index acf0979..41e5914 100644
--- a/include/uapi/linux/types.h
+++ b/include/uapi/linux/types.h
@@ -23,11 +23,7 @@
#else
#define __bitwise__
#endif
-#ifdef __CHECK_ENDIAN__
#define __bitwise __bitwise__
-#else
-#define __bitwise
-#endif
typedef __u16 __bitwise __le16;
typedef __u16 __bitwise __be16;
--
MST
2016 Dec 08
3
[PATCH] linux/types.h: enable endian checks for all sparse builds
...my tree as a replacement for enabling
this just for virtio.
include/uapi/linux/types.h | 4 ----
1 file changed, 4 deletions(-)
diff --git a/include/uapi/linux/types.h b/include/uapi/linux/types.h
index acf0979..41e5914 100644
--- a/include/uapi/linux/types.h
+++ b/include/uapi/linux/types.h
@@ -23,11 +23,7 @@
#else
#define __bitwise__
#endif
-#ifdef __CHECK_ENDIAN__
#define __bitwise __bitwise__
-#else
-#define __bitwise
-#endif
typedef __u16 __bitwise __le16;
typedef __u16 __bitwise __be16;
--
MST
2003 Sep 16
1
OpenSSH Security Advisory: buffer.adv
This is the 1st revision of the Advisory.
This document can be found at: http://www.openssh.com/txt/buffer.adv
1. Versions affected:
All versions of OpenSSH's sshd prior to 3.7 contain a buffer
management error. It is uncertain whether this error is
potentially exploitable, however, we prefer to see bugs
fixed proactively.
2. Solution:
Upgrade to OpenSSH
2003 Sep 16
1
[alambert@quickfire.org: Heads up -- potential problems in 3.7, too? [Fwd: OpenSSH Security Advisory: buffer.adv]]
...arlier
Index: buffer.c
===================================================================
RCS file: /cvs/src/usr.bin/ssh/buffer.c,v
retrieving revision 1.16
retrieving revision 1.18
diff -u -r1.16 -r1.18
--- buffer.c 26 Jun 2002 08:54:18 -0000 1.16
+++ buffer.c 16 Sep 2003 21:02:39 -0000 1.18
@@ -23,8 +23,11 @@
void
buffer_init(Buffer *buffer)
{
- buffer->alloc = 4096;
- buffer->buf = xmalloc(buffer->alloc);
+ const u_int len = 4096;
+
+ buffer->alloc = 0;
+ buffer->buf = xmalloc(len);
+ buffer->alloc = len;
buffer->offset = 0;
buffer->end = 0;
}
@@ -34,8 +37,10...
2007 Mar 21
0
[907] branches/wxruby2/wxwidgets_282: Wx::Control API 2.6 -> 2.8
...bsp     2007-03-21 10:43:28 UTC (rev 906)
+++ branches/wxruby2/wxwidgets_282/doc/textile/control.txtl        2007-03-21 10:50:01 UTC (rev 907)
</span><span class="lines">@@ -23,12 +23,11 @@
</span><span class="cx">
</span><span class="cx"> * "Control#command":#Control_command
</span><span class="cx"> * "Control#get_label":#Control_getlabel
</span><ins>+* "Control#get_la...
2013 Jun 06
1
[supermin PATCH] RFC: Add a --names-only flag.
...let pkgs = run_command_get_lines cmd in
let pkgs =
if Config.apt_cache_depends_recurse_broken then
diff --git a/src/supermin_package_handlers.ml b/src/supermin_package_handlers.ml
index aea557e..7048f66 100644
--- a/src/supermin_package_handlers.ml
+++ b/src/supermin_package_handlers.ml
@@ -23,11 +23,11 @@ open Supermin_utils
open Supermin_cmdline
type package_handler = {
ph_detect : unit -> bool;
ph_init : unit -> unit;
- ph_resolve_dependencies_and_download : string list -> string list;
+ ph_resolve_dependencies_and_download : string list -> mode -> string li...
2015 May 13
0
Why is the diag function so slow (for extraction)?
...et(), there is a remarkable
improvement. I think it's worth condition the code on dispatch or
not. For example:
[HB-X201]{hb}: svn diff diag.R
Index: diag.R
===================================================================
--- diag.R (revision 68345)
+++ diag.R (working copy)
@@ -23,9 +23,11 @@
stop("'nrow' or 'ncol' cannot be specified when 'x' is a matrix")
if((m <- min(dim(x))) == 0L) return(vector(typeof(x), 0L))
+ nms <- dimnames(x)
+ nrow <- dim(x)[1L]
## NB: need double index to avo...
2008 Jun 06
0
[PATCH] stubdom: prevent newlib from emiting cli/sti in longjmp
...ewlib from emiting cli/sti in longjmp
Also fix build dependencies and cleanup.
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
diff -r b320cfe1f10f stubdom/Makefile
--- a/stubdom/Makefile Thu Jun 05 13:04:07 2008 +0100
+++ b/stubdom/Makefile Fri Jun 06 16:00:35 2008 +0100
@@ -23,9 +23,11 @@
ifeq ($(GNU_TARGET_ARCH), i686)
TARGET_CFLAGS=
+NEWLIB_CFLAGS+=-D_I386MACH_ALLOW_HW_INTERRUPTS
endif
ifeq ($(GNU_TARGET_ARCH), x86_64)
TARGET_CFLAGS=-mno-red-zone
+NEWLIB_CFLAGS+=-D_I386MACH_ALLOW_HW_INTERRUPTS
endif
ifeq ($(GNU_TARGET_ARCH), ia64)
TARGET_CFLAGS=-mconstant-gp...
1998 Apr 22
0
Patch for print_svid.c
...access to other System V based systems.
I don't know if this list is the appropriate place to post patches;
if it is not, please let me know.
Bye,
N. Pueschel
-------------- next part --------------
--- print_svid.c.orig Thu Jan 29 20:43:59 1998
+++ print_svid.c Mon Mar 30 07:41:19 1998
@@ -23,12 +23,11 @@
* printer information on a SVID or XPG4 compliant system. It does this
* through the use of the SVID/XPG4 command "lpstat(1)".
*
- * The expectations is that execution of the command "lpstat -v" will
+ * The expectations is that execution of the command "...
2011 Mar 16
3
[PATCH] tools: do not link against unused libraries
# HG changeset patch
# User Ian Campbell <ian.campbell@citrix.com>
# Date 1300271932 0
# Node ID 7e326d27d899a3133479c8b7c983f660cdeda48c
# Parent f35234b6636a0410a7d5eaa409e98ebe59080e4f
tools: do not link against unused libraries.
A fair few things under tools link against libraries which they don''t
even use.
Most of this appears to come from copy-and-pasting previous Makefile
snippets and cargo-culting plus the tendency to define glob...
2011 Nov 30
1
[PATCH] hivex: Added gnulib includes from builddir, as suggested by the Gnulib documentation; link hivexml against libgnu.
...r)/gnulib/lib \
+ -I$(top_builddir)/gnulib/lib \
-I$(top_srcdir)/lib \
-DLOCALEBASEDIR=\""$(datadir)/locale"\" \
$(WARN_CFLAGS) $(WERROR_CFLAGS)
diff --git a/xml/Makefile.am b/xml/Makefile.am
index b2af45d..67ba248 100644
--- a/xml/Makefile.am
+++ b/xml/Makefile.am
@@ -23,10 +23,11 @@ bin_PROGRAMS = hivexml
hivexml_SOURCES = \
hivexml.c
-hivexml_LDADD = ../lib/libhivex.la $(LIBXML2_LIBS)
+hivexml_LDADD = ../lib/libhivex.la ../gnulib/lib/libgnu.la $(LIBXML2_LIBS)
hivexml_CFLAGS = \
-DLOCALEBASEDIR=\""$(datadir)/locale"\" \
-I$(top_src...
2003 Sep 16
5
OpenSSH Security Advisory: buffer.adv
This is the 1st revision of the Advisory.
This document can be found at: http://www.openssh.com/txt/buffer.adv
1. Versions affected:
All versions of OpenSSH's sshd prior to 3.7 contain a buffer
management error. It is uncertain whether this error is
potentially exploitable, however, we prefer to see bugs
fixed proactively.
2. Solution:
Upgrade to OpenSSH
2005 Nov 20
0
[PATCH] Solaris 10 and missing OpenSSL functions >128bit
...her-aes.c
===================================================================
RCS file: /usr/local/src/security/openssh/cvs/openssh_cvs/cipher-aes.c,v
retrieving revision 1.4
diff -u -p -r1.4 cipher-aes.c
--- cipher-aes.c 9 Dec 2003 08:05:43 -0000 1.4
+++ cipher-aes.c 20 Nov 2005 02:39:30 -0000
@@ -23,7 +23,11 @@
*/
#include "includes.h"
-#if OPENSSL_VERSION_NUMBER < 0x00907000L
+
+/* compatibility with old or broken OpenSSL versions */
+#include "openbsd-compat/openssl-compat.h"
+
+#ifdef USE_BUILTIN_RIJNDAEL
RCSID("$OpenBSD: cipher-aes.c,v 1.2 2003/11/26 21:44...
2004 Sep 10
0
1.0 source candidate
...test
+SUBDIRS = doc include man src test
DISTCLEANFILES = libtool-disable-static
Index: configure.in
===================================================================
RCS file: /cvsroot/flac/flac/configure.in,v
retrieving revision 1.24
diff -u -r1.24 configure.in
--- configure.in 2001/07/20 23:44:35 1.24
+++ configure.in 2001/07/21 01:58:17
@@ -136,7 +136,7 @@
AC_SUBST(FLaC__USIZE64)
SAVE_CFLAGS="$CFLAGS"
-CFLAGS='-I./include -I $(top_srcdir)/include -Wall -W'
+CFLAGS='-I$(srcdir)/include -I $(top_srcdir)/include -Wall -W'
if test x$debug = xtrue; then
CF...
2002 Feb 24
3
Multiple Instancies of Samba on a single System
...pful:
Which settings must appear in the Configuration, to split the
working-directories? (locks, logs, private-dir and so on)
- Very interesting:
Has anyone experience with such a configuration?
Thanks in advance
Gunther
--
Dr. Gunther Hess Elmos Semiconductor AG
Tel.: ++49 +231 7549-520 Heinrich Hertz Str. 1
Fax: ++49 +231 7549-109 D-44227 Dortmund
WWW: http://www.elmos.de Opinions are strictly of my own
2004 Sep 10
5
1.0 source candidate
I rethought it and it seemed like a bad idea to post
a big file, so you can get it here:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/flac/junk/flac-1.0-src-candidate.tar.bz2
Josh
__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/