search for: mystat

Displaying 20 results from an estimated 23 matches for "mystat".

Did you mean: mdstat
2017 Jul 18
3
Creating/Reading a complex string in R
Hi again, Let say I have below string (arbitrary) <html> <head> <script type="text/javascript" <script type="text/javascript"> mystatement('current', {'pac':['']}); mystatement; I want to pass above string to some R variable for further analysis. So I have tried below : String = '<html> <head> <script type="text/javascript" <script type="text/javascri...
2017 Jul 18
4
Creating/Reading a complex string in R
...inal string. Regards, On Tue, Jul 18, 2017 at 10:27 PM, John McKown <john.archie.mckown at gmail.com> wrote: > Try: > > String = '<html> > <head> > <script type="text/javascript" <script type="text/javascript"> > mystatement(\'current\', {\'pac\':[\'\']}); > mystatement;' > > > To embed a single ' mark in a string delimited by ' marks, you must "escape" > them by prefixing them with a back-slash \. > > > > R version 3.4.0 (2017-04-21) -...
2017 Jul 18
0
Creating/Reading a complex string in R
Try: String = '<html> <head> <script type="text/javascript" <script type="text/javascript"> mystatement(\'current\', {\'pac\':[\'\']}); mystatement;' To embed a single ' mark in a string delimited by ' marks, you must "escape" them by prefixing them with a back-slash \. R version 3.4.0 (2017-04-21) -- "You Stupid Darkness" Copyri...
2017 Jul 19
0
Creating/Reading a complex string in R
...Jul 18, 2017 at 10:27 PM, John McKown > <john.archie.mckown at gmail.com> wrote: >> Try: >> >> String = '<html> >> <head> >> <script type="text/javascript" <script type="text/javascript"> >> mystatement(\'current\', {\'pac\':[\'\']}); >> mystatement;' >> >> >> To embed a single ' mark in a string delimited by ' marks, you must "escape" >> them by prefixing them with a back-slash \. >> >> >> &g...
2006 Dec 13
4
Polycom MyStat
Has anyone ever gotten the Polycom Status feature, accessible via the 'MyStat' soft-key to work? When you change the status in this way, the phone does not send any communication to Asterisk, and it seems to have no effect in incoming calls. So... what's it for? Doug
2017 Jul 19
2
Creating/Reading a complex string in R
...John McKown >> <john.archie.mckown at gmail.com> wrote: >>> Try: >>> >>> String = '<html> >>> <head> >>> <script type="text/javascript" <script type="text/javascript"> >>> mystatement(\'current\', {\'pac\':[\'\']}); >>> mystatement;' >>> >>> >>> To embed a single ' mark in a string delimited by ' marks, you must "escape" >>> them by prefixing them with a back-slash \. >>...
2005 May 06
4
Legality Issue & Relaying
...ve to have separate addresses (similar to http/ftp mirrors)? I wonder if the former could be achieved with a "round-robin" set-up in the DNS server, whereby a single name resolves to different ip addresses sequentially, it would look something like this on the DNS server for example.com: mystation 0 IN A 192.168.0.1 mystation 0 IN A 192.168.20.1 mystation 0 IN A 62.78.23.7 Above ^ first request made to mystation.example.com would resolve to 192.168.0.1, second to 192.168.20.1, third to 62.78.23.7,...
2009 Jul 08
1
bootstrapping error message "Error in t.star[r, ] <- statistic(data, i[r, ], ...) : number of items to replace is not a multiple of replacement length"
...am trying to run some bootstraps with the boot package. When I run it with 400 replicates it does it ok, but then I need to run the same analysis but with 89, 86, 102 and 106 samples (for four different environments), and then is when I get the error message: > mybootstrap <- boot(Datos, mystat, 2000) Error in t.star[r, ] <- statistic(data, i[r, ], ...) : number of items to replace is not a multiple of replacement length Anyone familiar with this error message? Does anyone knows the minimum sample size for boot package to run properly? Is there anyway to tell R how many samples sho...
2007 Feb 15
1
Problem in summaryBy
...implified data Subj <- rep(1:4, each=6) Analyte <- rep(c(rep("RBV",3),rep("TBV",3)),4) Dose <- rep(c(200,400,600),8) AUC <- rnorm(24, c(40,80,120,4,8,12), c(8,16,24,0.8,0.16,0.24)) # The real dataset may have NAs in it df <- data.frame(Subj, Analyte, Dose, AUC) myStats <- function(x) { count <- function(x) length(na.omit(x)) pCV <- function(x) sd(x,T) / mean(x,T) * 100 c( n = count(x), mean = mean(x,T), SD = sd(x,T), CV = pCV(x), median = median(x,T), min = min(x,T), max = max(x,T) ) } library...
2005 Oct 07
1
permutational Kolmogorov-Smirnov p-value for paired data
Dear List, I am new to R and find it very powerful. I would like to compute the permutational p-value for paired data using Kolmogorov-Smirnov, but the built-in ks.test does not have this option, unlike the t.test which has a paired=TRUE flag. Has someone written a library or a routine that does this? Alternatively, if someone could show me how to do pair-wise permutations in R, then I can
2005 Aug 31
3
My CentOs 4.1 desktop starts to freez ( non-responsive) with 100% cpu usage
It starts to become a non-responsive from time to time with 100% cpu usage eventhough there is no applications running except a browser. I have been running centos 4 for the past 6 months without any problem with regular update. Now, I have to reboot whenever it shows signs of a non-response. It starts to exhibit this behaviour a cople of days ago. I could not figure it out the reason and need
2006 Mar 05
4
Test out the upcoming plugins stuff for me
Hi folks, I''ve been working on the plugins system this weekend and I think I''ve nailed it down. The system will basically be able to load gems that are configured right to be plugins. It''ll do it fairly dynamically and shouldn''t require any configuration from the end user other than to install the gem. Doing this though will involve a bit of surgery on the
2006 Jan 02
0
boostrap astronomy problem
...or standard errors and confidence intervals. Is it safe to assume that the distributions for k and e are approximately Normal, therefore making the bootstrap useful? I have actually used the boot function with this set up: -------------------------------------------------------------------------- mystat=function(s,b){ #Negative Log Likelihood Function lm<-function(x){ e<-x[1] k<-x[2] log(e) - n*log(k+1) + (k+1)*n*log(e-t) - k*sum(log(e-s[b])) } #Gradient of Negative Likelihood Function glm=function(x){ e<-x[1] k<-x[2] c(1/e + (k+1)*(n/(e-t)) -...
2005 Mar 09
2
Mountpoint problems...
I can't figure out exactly what to put as my Icecast webroot directory, nor what to tell my Winamp Oddcast plugin to name as the mountpoint. I'm a n00b here and barely know what these words even mean, lol, but I can get the Oddcast to log in to the Icecast and people can go to the .m3u file I put into the mountpoint, but it either just cycles songs or doesn;t play. I noticed that it only
2005 Mar 09
3
Polycom IP 500 bitmaps and Idle Display Animation
Has anyone got this to work? Under Idle Display Animation, the administrators guide says "For example, a company logo could be displayed".. In the ipmid.cfg file, I enabled 'ind.idleDisplay.enabled' (ie changed it to 1), and under the IP 500 section, I added an entry for the bitmap that I want to display: bitmap.IP_500.66.name ="arf" but from there I'm not sure
2005 Mar 09
0
Mountpoint problems...
...ership in a co-located machine on a big pipe somewhere. We decide that we both want to stream audio from that machine. Since we both administer it, there's no harm in us both knowing the main source password. So I configure my source to broadcast to ourserver.com port 8000 on mountpoint /mystation.ogg and you broadcast to ourserver.com:8000/yourstation.ogg. These mounts are created when each of us connects and people can connect to them to hear the particular stream that's associated with them. Note that you can set up mounts with different passwords or other parameters, check o...
2002 Nov 22
0
not able to browse workgroup/domain
...lorer (win98) to browse the domain: Mydom is not accessible. The Computer or sharename could not be found. Make sure you typed it correctly, and try again." by typing in the path name \\myserver\ at address bar then i can view my server share. when checking my log file, this is what i see (log.mystation) : when i tried to browse the domain -> [2002/11/19 14:56:55, 0] smbd/password.c:authorise_logon(863) authorise_login: rejected invalid user nobody when i typed the server path directly -> [2002/11/19 14:57:46, 0] smbd/service.c:make connection(381) make_connection: terry logged in a...
2005 Mar 10
1
Mountpoint problems...
...ocated > machine on a big pipe somewhere. We decide that we both want to stream > audio from that machine. Since we both administer it, there's no harm in > us both knowing the main source password. So I configure my source to > broadcast to ourserver.com port 8000 on mountpoint /mystation.ogg and you > broadcast to ourserver.com:8000/yourstation.ogg. These mounts are created > when each of us connects and people can connect to them to hear the > particular stream that's associated with them. > > Note that you can set up mounts with different passwords or othe...
2012 Sep 14
1
Boxplot lattice vs standard graphics
Given my reproducible example test<-structure(list(site = structure(c(1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 5L), .Label = c("A", "B", "C", "D", "E"), class =
2008 Apr 18
1
Newbie Polycom: Subscription/Presence Problem
...- 8166 at default : SIP/8166 State:Idle Watchers 1 ---------------- - 1 hints registered I thought I did all the right thing but for some reasons the last state is always Idle even though I press the DND (do not disturb) button or change the state via the MyStat soft key, not to mention that the light next to the speed dial never lighted up. Here is what I did: ***sip.conf [general] subscribecontext = default <===== notifyringing = yes <===== notifyhold = yes <===== limitonpeers = yes <===== [8166...