similar to: adding in missing values in a sequence

Displaying 20 results from an estimated 2000 matches similar to: "adding in missing values in a sequence"

2013 Jan 03
2
Sas by function in R
Hello, It's an alternative to use SAS by function in R? I want to plot d histograms by plot.from example bellow: Thank you! plot d 1 1 16.3 2 1 25.0 3 1 57.8 4 1 17.0 5 2 10.8 13 2 96.4 17 3 76.0 18 3 32.0 19 3 11.0 20 3 11.0 24 3 106.0 25 3 12.5 21 4 19.3 22 4 12.0 26 4 15.0 27 5 99.3 32 7 11.0 36
2008 Jul 08
2
Change in behaviour of sd()
Hi I have just upgraded from R2.6.0 to R2.7.1 (running on Windows) and a part of my code that previously ran ok now gives an error. The following is a simple example to demonstrate my problem. > a <- array(c(1,2,3,4,5,6,rep(NA,6)),dim=c(6,2)) > apply(a,2,sd,na.rm=T) In R2.6.0 this gives (which is what I would like) [1] 1.870829 NA In R2.7.1 it gives the following error
2000 Dec 08
2
GIS and Spatial stats
[this went to me instead of the list; MM, your list maintainer] I am digging in the wrong hole I guess. Where can I find R /S routines for spatial statistics? Also has anyone made an R link to a GIS package? Anyone out there who works in this area? Thanks Richard E. Hoskins WA State Department of Health 1102 Quince Street Olympia, WA 98504-7812 richard.hoskins at doh.wa.gov tel: (360) 236 -
2015 Feb 18
3
Asterisk 13 - sorcery realtime for pjsip publish objects
Excellent. I was using ast-13.1.0 with no luck. I upgraded to 13.2.0 and have made it further, but am having a little difficulty. The outbound-publish object types seems to be working in realtime now. But the asterisk-publication object is only reading from sorcery.conf. I know you said that it *should* work, with no guarantee, which I'm fine with. I just want to make sure I don't
2008 Oct 02
1
possible bug in function 'var' in R 2.7.2?
Dear R-Help, I have used R2.6.0 until I recently installed also R2.7.2 (see details below) In R 2.6.0, the following script using the function 'var' (cor(stats)): x.test <- c(NA, NA, NA, NA) var(x.test, na.rm=T) gives the output: NA In R2.7.2 the output of the same script generates an error message and stops R: 'Error in var(x.test, na.rm = T)
2015 Feb 18
2
Asterisk 13 - sorcery realtime for pjsip publish objects
Hello, I am currently trying to set up pjsip realtime and would like to have outbound-publish, inbound-publication, and asterisk-publication sorcery object types in ODBC realtime. Is that currently supported? I know that some object types are known working and others are not. I was curious what the status of those objects are. Thanks! Matt Hoskins | NPG Corp | Systems Architect
2015 Feb 19
2
Asterisk 13 - sorcery realtime for pjsip publish objects
Matt Hoskins wrote: > Good Morning, > > After further investigation, I found that the res_pjsip_publish_asterisk > module does not use the realtime sorcery wizard, but instead only reads > from the configuration files. I've been able to patch the module, using > the logic from the other modules to learn how to make the sorery > configuration read from the other sorcery
2004 Jan 30
3
Call quality questions
Our basic system is as follows: P4 3.0 Ghz w/ HT, 1GB PC3200 RAM, 120 GB HDD, RH 9.0 OS, * from CVS several weeks ago, working OK for routing, VM, and AA, calls in on separate PSTN lines to Adtran TSU 600, into * server through T100P card. The hardware is not taxed at all with little over 20% proc utilization ever, low mem use, etc. All Phones are SNOM 200's with various firmware revisions
2007 Nov 08
2
centile reference chart / clildren growth chart - what package/method to use
We are constructing growth charts (age/weight and age/length) for children with diagnosis that impacts weight/length. But we we don't know how to use R for producing growth charts. We are collection data of Age, Weight and Length. The data are used to produce diagnosis-specific Growth charts (like the CDC Growth Charts:
2007 Oct 31
1
reversing the scale on ggplot
Dear All, I am trying to build a simple ggplot, but where the scale is reversed, i.e. the largest numbers are on the bottom. An example of the code I am using is > plotdata<-data.frame(x=1:10, y=runif(10)) > plot<-ggplot() > plot<-plot+layer(data=plotdata, mapping=aes_string(x='x',y='y'), geom='point', stat='identity', size=4) >
2007 Nov 21
1
R 2.6.0 Error in X11() : could not find X11 fonts
All- I have rhel4 and just installed R2.6.0. The error suggests it cant find the font library. I have failed to trouble shoot. Can anyone help me? Thanks James Correia Jr Post Doc PH: 372-6463 james.correia at pnl.gov "Wisdom. Strength. Courage. Generosity. Each of us are born with one of these. We must find the other three inside of us." -from "Into the West"
2008 Feb 04
1
r-release Windows x86_64
I was just looking at the daily checks and it seems the "r-release Windows x86_64 (32-bit)" column is running R2.6.0. Is that correct? Possibly related, an error is being flagged in that column for TSMySQL, which appears to be a problem that should be caught in the other columns too. It is something that has been fixed in my sources for awhile. (I think it was fixed in the
2007 Nov 15
1
problem with png()
Hi, I am runing R2.6.0 (2007-10-03) on WindowsXP. If I use png() to save a plot I lose the main title. An example: ########################## outfile <- "outfile.png" p11 <- histogram( ~ height | voice.part, data = singer, xlab="Height", main="Ingo's title") p2 <- histogram( ~ height, data = singer, xlab = "Height") png(outfile,
2007 Dec 10
1
help with fatal error message
Dear helper, After some cleaning, I found out that I cannot open my R2.6.0 console with message: "Fatal error: unable to restore saved data in .Rdata", and every time I retry it just kick me off. I am wondering if I still be able to retrieve the data that I've been working for a month. I have installed the new R2.6.1 and it has no problem to open, only there is nothing in it I also
2007 Nov 01
1
ggplot2 - expand range?
Dear UserRs, I am trying to use systematically ggplot2 for most of my plots, but I am fighting some lack of documentation, which I try to overcome. I want to build a scatterplot where the axes cross exactly at (0,0). I tried using scale_y_continuous(limits=c(0,10)), but I always get an extra space at the bottom of the axes. The code I used is below. > plotdata<-data.frame(x=1:10,
2004 Jan 30
1
SNOM 200 question
Question for other snom 200 users: 1. We have horrible sound quality regardless of the codec we use in the phone or specify in *. Has anyone else run into this early on and found a software fix? 2. Speakerphone will not work for playing VM messages, it chops the message into unintelligible fragments of audio. Any ideas? 3. Initially we have horrible introduction of background noise into the
2007 Dec 14
1
RODBC, optimizing memory, "Error: cannot allocate vector of size 522 Kb".
I am using RODBC and "odbcConnect". I have successfully used odbcConnect to extract "modest" amounts of data from SQL. For convenience, (and maybe speed?) I wish, if possible, to extract larger amounts of data in a single query. (I am running R2.6.0 under a machine running Windows Small Business Server with 3mb of RAM. I run gc() prior to attempting the query. I have
2004 Jan 26
1
7960 Problems
This is not specifically related to * but * is the software I'm using so here goes... Does anyone have the correct file set for a 7960?? I've been trying to get the release 6 SIP load on one I have without any luck. The phone keeps getting the same 2 files from the tftp server and starting over. If you have the files - other than the POS30600.bin which I know is licensed - could you
2014 Oct 30
1
MWI publish VIA pjsip for non sip channels
Before I go down a rabbit hole, does the mwi publish/subscription work for non SIP phones? For instance, I have a single voicemail server, connected to multiple asterisk boxes via SIP. On each of those servers, there are a mix of SIP and SCCP phones attached. Currently, I'm using res_xmpp to distribute mwi from the voicemail server to the endpoint servers. Would this type of setup work
2015 Jan 26
1
PJSIP vs SIP channeltype
Hello, I'm currently evaluating asterisk 13 (Currently on 11). We're testing the migration from SIP to PJSIP. Is there a way to alias the SIP channeltype to PJSIP when exlusively using pjsip? Matt Hoskins | NPG Corp | Systems Architect 816.749.2815 (Internal: ext. 10015) -------------- next part -------------- An HTML attachment was scrubbed... URL: