search for: ojs

Displaying 20 results from an estimated 65 matches for "ojs".

Did you mean: objs
2008 Sep 12
2
Again, about boxplot
Thank you for your guys reply for my previous question. But I got one more question about the boxplot. With the code in the R-help: boxplot(len ~ dose, data = ToothGrowth, boxwex = 0.25, at = 1:3 - 0.2, subset = supp == "VC", col = "yellow", main = "Guinea Pigs' Tooth Growth", xlab = "Vitamin C dose mg", ylab =
2004 Nov 04
3
[fdo] Re: TTS API
...oming audio data > too long. > KTTSD already does this, and I think it would be duplication of work to do it in every driver if the higher speech system can take care of this. Doing it before sending the phrases to the engines allows to interupt a longer text with warnings, etc. > OJS> 2.b) For hardware speech: possibility to set markers and to > get OJS> feedback whenever a marker has been reached. > > Markers should be available for both software and hardware synthesis. > But they differ in their form: While with hardware synthesis feedback > should be rec...
2003 Mar 12
1
'summary' with logicals (PR#2629)
Consider > oj <- data.frame(x = c(TRUE, FALSE, NA)) > oj x 1 TRUE 2 FALSE 3 NA > summary(oj) x Mode :logical FALSE:1 TRUE :1 But > oj$x <- factor(oj$x) > summary(oj) x FALSE:1 TRUE :1 NA's :1 My point is that NA's should be reported for logicals like they are for other data types. Göran --- Göran
2007 Nov 21
1
Manipulating x axis in stripchart
Hi all, I I need to manipulate the x axis in a stripchart. I will use one of the data sets included in R to explain what I need to do. attach(ToothGrowth) stripchart(len[supp=='VC']~dose[supp=='VC'], vertical=TRUE, group.names=c('A','A','A')) stripchart(len[supp=='OJ']~dose[supp=='OJ'], add=TRUE, vertical=TRUE, at=c(1:3)+.1,
2006 Nov 10
4
chat server program
Hi all, anyone knows about a chat server software for centos, in which I can create chat rooms. Thanks Sherwyn Greene Planner / I.T. Technician Project Controls Dept. Kentz-OJ's E&I Services J.V. +1 (868) 648-0876 -------------- next part -------------- An HTML attachment was scrubbed... URL:
2018 Apr 12
2
ACL for system users?
Hello all, I'm setting up an IMAP server with dovecot. I've set up system users with PAM authentication and Maildir maiboxes. I'd like to share mailboxes among them, but regardless of what I try, I bump into filesystem permissions. I want to have Maildirs created for new users with the right permissions. I even changed "UMASK" in file /etc/login.defs from 022 to 002,
2010 Sep 26
2
Changing x-axis on boxplot
Dear List, ? I am creating a boxplot with two subsets, very similar to the example by Roger Bivand at ?boxplot (reproduced below).? I am trying to change the labels on the x-axis to have one number to cover both subsets.? I can do this in other plots by using axis=FALSE followed by a separate axis() command.? I have also tried variations in the names= argument but can't get it to work.?
2010 Jul 29
3
hplip under CentOS-5.5
Is anyone successfully using hplip under CentOS? When I try to print on my HP Officejet J4580 I always get the error ---------------------------------- Printer Filter "foomatic-rip-hplip" for printer "oj" not available: No such file or directory ---------------------------------- What I find puzzling is that I have googled for this, and it appears there has been the same
2018 Apr 13
0
ACL for system users?
Dovecot will copy the mail root permissions when creating directories & folders. Aki On 12.04.2018 22:45, Rub?n Fern?ndez Asensio wrote: > > Hello all, > > I'm setting up an IMAP server with dovecot. I've set up system users > with PAM authentication and Maildir maiboxes. > > I'd like to share mailboxes among them, but regardless of what I try, > I bump
2001 Jul 25
2
pch with plot and legend
I'm trying to plot a scatterplot of two variables using pch to plot different characters based on a third factor. Here is my example > data("ToothGrowth") > attach(ToothGrowth) > levels(supp) [1] "OJ" "VC" > plot(len ~ dose,pch=as.numeric(supp)) > legend(locator(1),pch=as.numeric(supp),legend=levels(supp)) The command as.numeric(supp) returns 2 2
2008 Feb 04
7
adding the mean and standard deviation to boxplots
Dear list, How can I add the mean and standard deviation to each of the boxplots using the example provided in the boxplot function? boxplot(len ~ dose, data = ToothGrowth, boxwex = 0.25, at = 1:3 - 0.2, subset = supp == "VC", col = "yellow", main = "Guinea Pigs' Tooth Growth", xlab = "Vitamin C dose mg",
2000 Jun 07
1
forward stepwise selection
...too many explanatory variables. Hence I wanted to start with just a constant and do forward selection, to get a new starting model for full stepwise selection again. But R (version 0.99.0) doesn't like this. > step(lm(ANB.DIFF~.,tink4),trace=0) Call: lm(formula = ANB.DIFF ~ SEX + AGE.YRS + OJS + S.AR1 + CD.GO1 + CD.GN1 + AR.GN1 + UAFH1 + UPFH1 + LPFH1 + AFP1 + PFP1 + OJ1 + SNA1 + SNB1 + SN.POG1, data = tink4) Coefficients: (Intercept) SEXmale AGE.YRS OJS S.AR1 -0.05001 0.47100 0.11148 -0.10458 0.11228 CD.GO1 CD.GN1...
2015 Sep 10
2
tinc generating invalid packet checksums?
We have a Zenoss server in our main office monitoring (among many other things) an Apache server in a remote network, with a Tinc link between the two networks. The monitoring simply involves making an HTTP request to a URL once every 5 minutes and confirming that a response page comes back. Most of the requests to this particular web server succeed (and similar requests to other web servers
2010 Nov 20
10
An empty grey diagram
Hi folks, Win7 64bit R 1.12.0 I run following command on R:- > ToothGrowth > attach(ToothGrowth) > plot(dose,len) > matrics=lm(len~dose) > abline(metrics) Error in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...) : plot.new has not been called yet Only a grey diagram is displayed without content > plot(abline(metrics)) Error in int_abline(a = a, b = b, h = h, v
2008 Sep 11
4
About "Plot.new"
Hi, sorry for bothering your guys. I will trying to make some nice graph using boxplot. when I check the help file of boxplot, there is a sample code as: boxplot(len ~ dose, data = ToothGrowth, add = TRUE, boxwex = 0.25, at = 1:3 + 0.2, subset = supp == "OJ", col = "orange") legend(2, 9, c("Ascorbic acid", "Orange juice"),
2004 Aug 06
1
Adjusting internal buffers of icecast2
Does anyone know a way to adjust eh buffers of icecast2? I think Mike once told me they were hard coded but i am not certain on this. If it is in the source, what section is it in. I need to play with these levels for a custom implementation of icecast. thanks. -Jason A. Steinbruegge aka OJ Impulse http://www.wopn.org <p><p><p><p><p><p><p><p>---
2006 Nov 06
1
pptp + iptables + centos
Hi, All I'm tring to get a client connected to a vpn server running pptp & centos, the client connects to the server but I can't browse the internet or the local network from the client, when I stop the firewall the client can ping the server but no browsing can be done, do I need a iptables rule to allow pptp clients to use the internet or browse the network??? Sherwyn
2005 Nov 21
1
$B!zCK@-$O40A4L5NAEPO?$r$7$FBT$D$@(B
$B!zCK@-$O40A4L5NAEPO?$r$7$FBT$D$@$1$G$9!#(B $B>/$74i$bA*$s$@J}$,$$$$$+$b!)!)$=$l$O$*G$$;$7$^$9!#(B http://www.00-love5.com/serebu/s.html $B!V(BYAHOO!$B!W!V(BGoogle$B!W$N8!:w7k2L$O$=$N%5%$%H$N?M5$!"(B $B?.MjEY!J%f!<%6!<$K$h$kEjI<!K$G=g0L$,7hDj$7$^$9!#(B $BEv%5%$%H$O8!:w%+%F%4%j(B $B!TAG?M%[%9%H!U$K$F%H%C%W%Z!<%8$G>R2p$5$l$F$$$^$9!#(B
2006 Apr 18
12
Formatting data drawn from a DB
Question for all: Right now i have a Table in a mySQL DB that has a row called Ingredients. When the data is entered into the DB its enter like so from a text area: 1 1/2 lbs. beef top sirloin, thinly sliced 1/3 cup white sugar 1/3 cup rice wine vinegar 2 tablespoons frozen OJ concentrate 1 teaspoon salt 1 tablespoon soy sauce 1 cup long grain rice 2 cups water 1/4 cup cornstarch 2 teaspoons
2008 Nov 27
2
OT: bash script for passwd and shadow manipulation
Hi, i need to extract some information from the /etc/passwd file to be used as a command input in a mail software. My /etc/passwd looks like: k.thomas:x:1918:100:Kimaura Thomas:/home/users/k.thomas:/bin/usersh My main issue here is that the fifth field contains spaces and spanish chars with accent. I currently do not posess the skill to understand how to use cut to extract all the field. So far,