similar to: stamp function in R

Displaying 20 results from an estimated 10000 matches similar to: "stamp function in R"

1999 Mar 28
1
can R produce gifs?
Dear R users, I would like to produce gifs or jpegs with R, as I would like to display them on a webpage. Is there an easier/faster/better way to do it than to generate postscript files and then use a utility like pstogif. The problem is that if possible I would like to get away without installing ghostscript, as my quota is too small. Thank you very much for your time and bandwidth, Ananke
1999 Jun 02
0
How to fill the aerea under a plot?
Dear R users, I hope that this question is not too dumb, but I can't figure out how to do it. I plot a function, e.g. plot(sin, -pi, 2*pi). Then I would like to have the aerea from the x-axis up to the graph from x ranging from -3 to 0, shaded red and the other part (x from 0 to 6) under the graph e.g. green or sth. like that.. Any hints on how to do that? I could draw lines (different
2005 Dec 13
3
Age of an object?
It would be nice to have a date stamp on an object. In S/Splus this was always available, because objects were files. I have looked around, but I presume this information is not available. -------------------------------------------------------------------- Trevor Hastie hastie at stanford.edu Professor, Department of Statistics, Stanford University Phone:
2006 Jul 27
2
Moving from Splus to R - advice/opinions request from a management perspective
Hi, I've looked through the archives and seen several posts discussing technical differences between R and S(plus). It appears to me that R can likely functionally replace Splus for my situation, but I'm more interested in looking at the risks and benefits of moving from Splus to R from a (project) management point of view. Background (a bit wordy, I'm afraid): -
2005 May 25
2
time-ordered object list
It's often useful to view objects in time order. In Splus I can do this with > objects.summary(order = "dataset.date") which delivers this sort of thing ... data.class storage.mode extent object.size dataset.date reference data.frame list 25 x 4 1700 2004.09.13 15:43 x data.frame list 15 x 4 1175
2009 Jan 22
2
time date stamp since, january 1st 1970
Hello, we are receiving some data, sample below - with a weird time/date stamp format, we need some help with R on converting this time date stamp to a useable field in R, date and time in a data-frame. The developer says its the number of milliseconds since midnight, January 1, 1970. sample: *1232558018624* --------------------- How do I interpret the time stamp? Is there a date, i need
2002 Oct 01
2
Does R have graphlets?
I've been experimenting some with the graphlets which S-Plus 6.1 has. Is there something similar in R? I've looked through documentations, and at SJava, but haven't found it. (If you don't know what a graphlet is, here's what it appears to be: a graphlet is a binary file that encodes information about a graph. Java uses spgraph.jar to display the graph and allow certain
2013 Feb 08
4
convert 12 time stamp to 24 hour
Readers, For a 12 hour time stamp: > testtime<-("2013-01-01 01:00:01 PM") > testtime [1] "2013-01-01 01:00:01 PM" > testtime24hour<-strftime(testtime,'%H:%M:%S') > testtime24hour [1] "01:00:01" how to convert to 24 hour format so that the object 'testtime24hour' is: '13:00:01' Thanks. -- r2151
2004 Oct 28
1
Re: DSP stamp
Yes, the Theora codec is based on VP3, which is an earlier version of ON2's VP6 codec. Theora is currently at its alpha 3 release, and is stable enough to have been used already for streaming live video from a number of conferences, and for encoding several videos that can be found at www.theora.org. Development has progressed to the point that the value of the codec can be seen. That
2004 Nov 18
3
date/time stamp
Hi ?Is there any way to reproduce the FTP behavior with Samba 3? The desired effect is not to respect timestamps from Windows files and just create them with Samba server date/time stamp when we drag/drop, copy/paste, cut/paste, old files to a disk share. We are replacing an FTP server with Samba3, so far it's doing great job, but this effect is needed (don't ask why please, app
2003 Jul 24
1
time and date stamp in voicemail
Hi, I see that there's been some very light discussion on having a standard time and date stamp in VM. How can I implement it today? (About to offer a system to a customer but they need the stamp to tell when people called.) Thanks, -- Steve ______________________________________ This sig is pending approval
2008 Jun 04
1
Splus/R typedef for C equivalent of S "integer"
We've been working on making it easier to write packages that work in both R and Splus. One issue is that R and Splus use different internal representations of integers and this makes a difference on their 64-bit versions: R uses ints (32 bits on 32-bit and 64-bit versions of R) and Splus uses longs (32 bits on 32-bit Splus and 64 bits on 64-bit Splus). The obvious ways to deal with the
2009 Dec 28
2
WHO Anthro growth curve macros and R
Hi all, I've got a project where I have to calculate weight-for-age Z-scores, preferably using the WHO standards. WHO have been very nice to publish macros for doing this in both STATA,SPSS, SAS and Splus formats (see http://www.who.int/childgrowth/software/en/), but for some reason have chosen not to use the free R alternative to Splus. In the Splus zipfile there are nine datafiles with a
2004 Jun 20
7
Date Time Stamp with Caller ID
Where does the date/time stamp from Caller ID come from? On my extensions ATA188 and IAX2 soft phone the caller id date / time is 12/30 12:00AM. The Linux time is correct. SayUnixTime return the correct time. Any Ideas? Does this work? Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Oct 25
3
simplification of code using stamp?
Hi I have the following code which I would like to simplify. Id does linear regressions and returns the r-squares, and the coefficients. It runs slow, as it is doing the regressions for each - is it possible to get the values in a dataframe which looks as follow: expert | xx | seeds | r.squared | slope | intercept Thanks in advance, Rainer library(reshape) rsqs <- as.data.frame(
2003 Mar 24
1
APC Modelling and the GLM function
Hi all Apologies for any cross posting. I have encountered a rather bizarre "problem" in Splus and R. I am using Age-Period-Cohort models to model cervical cancer and have run the same data on both R (v.1.4.1 & v1.6.2) and Splus (version 6.0). I used the same command line in both Splus and R: glm(cases~-1+as.factor(age)
2010 Apr 21
2
How to stamp my graphs with date and time
Dear all, How do stamp my graphs with date and time somewhere like left corner of the graph (not the plotting area). I know date() and Sys.time(), but where to? Thanks. Jun [[alternative HTML version deleted]]
2012 Jul 16
2
histogram of time-stamp data
Readers, A data set consists of time-stamp values: 00:00:00 23:11:00 06:22:00 The data set was imported: timestamps<-read.table("path/to/timestampsvalues") hist(timestamps) ...error... x must be numeric Then tried: plot(timestamps). How to adjust the graph to create a histogram where the intervals ranges can be specified, e.g. intervals of 60 minutes? Thanks in advance.
2003 Sep 11
1
discrepancy between R and Splus lm.influence() functions for family=Gamma(link=identity)
Hello, I am looking for an explanation and/or fix for a discrepancy in the behaviour of the R lm.influence() function [ version R 1.5.0 (2002-04-29) ] and the same function in Splus [ Splus version 5.1 release 1, running on SGI IRIX 6.2]. The discrepancy is of concern because I am migrating some Splus scripts to R and need to ensure consistency of results. Specifically, when I fit a glm()
2010 Feb 05
2
Importing data coming from Splus into R.
Hello there, I spent all day yesterday trying to get a small data set from Splus into R, no luck! Both, Splus and R, are run on a 64-bit RedHat Linux machine, the versions of the softwares are 64-bit and are as what follows: Splus: TIBCO Software Inc. Confidential Information Copyright (c) 1988-2008 TIBCO Software Inc. ALL RIGHTS RESERVED. TIBCO Spotfire S+ Version 8.1.1 for Linux 2.6.9-34.EL,