similar to: extract year or month from date

Displaying 20 results from an estimated 100 matches similar to: "extract year or month from date"

2007 Oct 30
1
axis title on two lines
Hello,I am searching for the possibility to make a two lines axis title. This suggestion:ylab=expression(paste("log rate\n[ fluor.",inc. %.% cell^{-1} %.% sec^{-1}," ]"))results in two lines left not centered and with a large gap.any suggestions.ThanksMarcelĀ  ______________________________________________________________________________ Marcel Sandow Leibniz Institute of
2009 Mar 27
3
Ploting a matrix
Hi evrybody, in a matrix consisting of 49 columns, I would like to plot all columns against the first in 48 different graphs. Can you help me? Thank you in advance Sebastian -- *************************************************************************************************************** Dipl. Biol. Sebastian Krug PhD - student IFM - GEOMAR Leibniz Institute of Marine Sciences Research
2009 Mar 26
2
Tables
Hi, I am just starting using R. Hence, sorry for asking probably rather easy questions. I used "read.table" to bring an .txt Table to R. Unfortunately the columns do not have the same length. I tried "fill=TRUE", to fill the blank space with "na". In a certain kind of way it worked, but befor filling the spaces it moved data from later columns to the first: 1
2007 Jun 11
2
Textpad help
I have installed textpad and tried running R code. But it gives me the following error message. The filename, directory name, or volume label syntax is incorrect. Tool completed with exit code 1 Can you provide any help? I am not a technical person. So the help in detail will be appreciated. Thx [[alternative HTML version deleted]]
2007 Oct 09
2
read sas data into R
Hi I am having trouble using read.ssd. Can someone help? The code that I have written is *sashome<-"C:/Mary/Datasets"* *read.ssd(read.ssd(file.path(sashome, "core", "sashelp"), "surv_1v",* *sascmd = file.path(sashome, "sas.exe"))* Here the path that I have given is correct, where the dataset surv_1v.sas7bdat is kept. The message that R gives
2017 Dec 05
2
upgrading python
On Tue, Dec 5, 2017 at 8:16 AM, Kai Grunau <kgrunau at geomar.de> wrote: > On 05.12.2017 14:05, Larry Martell wrote: >> >> I am running CentOS 7 and I have python version: >> >> Python 2.7.5 (default, Sep 15 2016, 22:37:39) >> >> I need a newer version of 2.7 to pick up a bug fix. How can I do that >> (without breaking anything in CentOS)? >
2017 Dec 05
2
upgrading python
On 12/05/2017 02:45 PM, Kai Grunau wrote: > On 05.12.2017 14:24, Larry Martell wrote: >> On Tue, Dec 5, 2017 at 8:16 AM, Kai Grunau <kgrunau at geomar.de> wrote: >>> On 05.12.2017 14:05, Larry Martell wrote: >>>> I am running CentOS 7 and I have python version: >>>> >>>> Python 2.7.5 (default, Sep 15 2016, 22:37:39) >>>>
2017 Dec 05
3
upgrading python
I am running CentOS 7 and I have python version: Python 2.7.5 (default, Sep 15 2016, 22:37:39) I need a newer version of 2.7 to pick up a bug fix. How can I do that (without breaking anything in CentOS)?
2004 Aug 06
3
Error: Client not receiving data fast enough
Hey all, I've been having the same "Client not receiving data fast enough" errors. I've got icecast configured so as not to send info to ANY yp directories. Even on a quiet 100MB connection between client and server, I can stay connected for only about 5 minutes at a shot if I'm lucky. I'm using Icecast 1.3.11, and Shout 0.8.0. The files I'm streaming are all
2017 Feb 09
1
Huge directory tree: Get files to sync via tools like sysdig
On Thu, 9 Feb 2017 14:43:57 +0100 Axel Kittenberger <axkibe at gmail.com> wrote: > > > > Not only that, but inotify is not guaranteed. (At least not on > > 3.16.0. Can't say regards later versions.) So you might miss some > > changes. > > > > Got any info on that? > > I noted that MOVE_FROM and MOVE_TO events are not guaranted to arrive
2017 Dec 05
0
upgrading python
On 05.12.2017 14:24, Larry Martell wrote: > On Tue, Dec 5, 2017 at 8:16 AM, Kai Grunau <kgrunau at geomar.de> wrote: >> On 05.12.2017 14:05, Larry Martell wrote: >>> I am running CentOS 7 and I have python version: >>> >>> Python 2.7.5 (default, Sep 15 2016, 22:37:39) >>> >>> I need a newer version of 2.7 to pick up a bug fix. How can I
2017 Dec 05
0
upgrading python
On Tue, Dec 5, 2017 at 10:00 AM, Marc Gouw <marc.gouw at embl.de> wrote: > > > On 12/05/2017 02:45 PM, Kai Grunau wrote: >> >> On 05.12.2017 14:24, Larry Martell wrote: >>> >>> On Tue, Dec 5, 2017 at 8:16 AM, Kai Grunau <kgrunau at geomar.de> wrote: >>>> >>>> On 05.12.2017 14:05, Larry Martell wrote: >>>>>
2009 Oct 26
3
as.POSIXct month problem
Hi everybody When I try example of strptime x <- c("1jan1960", "2jan1960", "31mar1960", "30jul1960") z <- strptime(x, "%d%b%Y") The result is; > z [1] NA NA NA NA I have got the same result with complete form of month but not with numeric form. Any idea? [[alternative HTML version deleted]]
2006 May 20
2
Function as.Date leading to error implying that strptime requires 3 arguments
I'm using R V 2.2.1. When I try an example from the as.Date help page, I get an error. > x <- c("1jan1960", "2jan1960", "31mar1960", "30jul1960") > z <- as.Date(x, "%d%b%Y") Error in strptime(x, format) : 2 arguments passed to 'strptime' which requires 3 > Any suggestions would be appreciated. Thanks, Rob
2006 Apr 24
2
Change the language of the labels in a graph
Hello, How do you change the language of the labels in a graph. In this example, I want to get French labels by changing Sys.putenv. I should get "Mai" instead of "May". Sys.putenv(LANGUAGE="fr") x <- as.Date(c("1jan1960", "2jan1960", "31mar1960", "30jul1960"), "%d%b%Y") y <-1:4 plot(x,y) Regards, Pierre
2001 Jan 11
2
problem with strptime example (PR#811)
On Thu, 11 Jan 2001 stephen@anc.ed.ac.uk wrote: > Hi, > > The help file for strptime has the following code which doesn't work > for me: > > ## read in date info in format `ddmmmyyyy' > x <- c("1jan1960", "2jan1960", "31mar1960", "30jul1960") > z <- strptime(x, "%d%b%Y") > > z > [1]
2001 Oct 01
2
problem with strptime example (PR#811)
Hello, strptime is still not working correctly in my computer (Windows 98 and R Version 1.3.1) From x <- c("1jan1960", "2jan1960", "31mar1960", "30jul1960") strptime(x, "%d%b%Y") I obtain [1] "NA" "NA" "NA" "NA" while x <- c("01011960", "02011960", "3131960",
2009 Apr 30
2
problem in as.date
I never understood that why is the value returned by as.date function in the library(survival) never matches with the description given in the help file: Following is the extract from ?as.date Description: Converts any of the following character forms to a Julian date: 8/31/56, 8-31-1956, 31 8 56, 083156, 31Aug56, or August 31 1956. Usage: as.date(x, order = "mdy", ...)
2000 Jul 01
1
No subject
Dear friends. Library Date was updated recently. I do not remember having seen the error below until now ? The plot title is made appropriately but the error message may be annoying, right ? I use version 1.1 on windows 98. library(date) tt <- as.date(c("1jan1960", "2jan1960", "31mar1960", "30jul1960")) plot(tt,c(1:4),main="How's that ?")
2000 Jul 01
1
No subject
Dear friends. Library Date was updated recently. I do not remember having seen the error below until now ? The plot title is made appropriately but the error message may be annoying, right ? I use version 1.1 on windows 98. library(date) tt <- as.date(c("1jan1960", "2jan1960", "31mar1960", "30jul1960")) plot(tt,c(1:4),main="How's that ?")