search for: emili

Displaying 20 results from an estimated 114 matches for "emili".

Did you mean: emil
2006 Mar 01
3
How to do a "proc summary" in R?
...dn't work since my vector RTyrday and julian don't have the same length. My question is: How can I create a new data sheet with the output of my function "tapply" ? Something I could have done in SAS by giving an "output out" to my "proc summary" Thank you, Emilie Emilie Berthiaume Graduate Student Biology Department Sherbooke University Sherbrooke, Québec CANADA emilie.berthiaume@USherbrooke.ca [[alternative HTML version deleted]]
2004 Nov 11
5
expressions and paste
I have written a function to plot data which will be used for various different chemistries. A simplified version is: plot_data <- function(risk,levels,chem,sd2,measure){ plot(risk, levels,main=paste ("per", sd2, measure, "\n in usual", chem)) } The problem is with the title. This works fine if the variable "chem" is just text, but if it is an expression then
2013 May 17
2
Radio player for FirefoxOS
Hi, I have pushed my radio player for FxOS to GitHub: https://github.com/emilis/worldradioplayer Currently it uses a precompiled data from http://dir.xiph.org/yp.xml: https://raw.github.com/emilis/worldradioplayer/master/static/js/data/xiph.org.stations.json I will have to switch to asynchronous station list loading and filtering in the near future and then will nag you aga...
2013 May 22
5
Radio player for FirefoxOS
Hi, Emilis, I have two working Icecast players which implement client-side parsing of yp.xml and searching then through it: - Python, can either transform the yp.xml into SQLite database and then search inside, or can store the yp.xml locally and transfer in into DOM, then search it. http://www.zavedil.com...
2000 Jun 16
3
login reporting (utmp?) problem on Linux
I have recently compiled and installed openssh-2.1.1p1 on a linux box. The login reporting does not seem to work properly. When logging into the box via ssh (protocol 1) utmp shows the user logged in and the tty properly, but the field for the login date/time and the field for originating host contain all NULLs. Is anyone else seeing this same behavior, or have I just done something really
2006 May 24
2
changing font size in plot(effect())
...n effect display. I've tried the following: > par(cex.lab=4) > plot(effect ("alti",reg8), ylab="detection probability") and > plot(effect ("alti",reg8), ylab="detection probability", cex=4) but nothing changes. Can anyone help me? thanks. Emilie Berthiaume graduate student Sherbrooke University 2500 boul. de l'Universit? Sherbrooke, Qu?bec J1K 2R1 CANADA Phone: 1-819-821-8000 poste 2059 Fax: 1-819-821-8049 emilie.berthiaume at USherbrooke.ca
2007 Feb 28
4
legend question
...ng works just fine. However, if I use other data such as, for instance: y<-c(1960, 1965, 1970, 1975) z<-c(1, 2, 3, 4) plot(y, z, type="l", col = 2) legend(x = -3, y = .9, "legend text", pch = 1, xjust = 0.5) then the legend is not shown. Any hints? Thanks in advance, Emili
2018 Aug 07
2
id <username> - doesnt list all groups
Hello, my enviroment: All Servers are Ubuntun 16.04-18.04 SAMBA AD DC Server and several SAMABA DOMAIN MEMBER (connected via WINBIND). In ADDC I've created a group "restrictaccess" and added some users. Now when im typing "id <username>" on a Domain Member, for some users the group "restrictaccess" are listed for some not! For example: ON DC: #
2000 Feb 10
1
smbmount/smbumount getting rid of dead connections
I've got a win98 laptop and a linux box. On my linux box, I smbmount a directory from the laptop. Alas, win98 boxes crash a lot, and I move the laptop a lot... to and from work. If the laptop crashes or if I move it with a shared directory mounted on my linux box, that mount gets "Stuck".... it's present in /etc/mtab but when I cd to it and do an ls it says: 243 emily ~>ls
2005 Nov 01
1
function effect and standard error
...1 253 3100 488 514 6100 0.07924610 0.06713200 0.11493178 0.13106639 0.05252749 0.04208334 My question is: Do the numbers on the second line of this output represent the standard error? What do the numbers on the top line represent? Thank you, Emilie Berthiaume graduate student Biology Departement Université de Sherbrooke 2500 boul. de l'Université Sherbrooke, Québec J1K 2R1 CANADA Tél: 1-819-821-8000 poste 2059 Fax: 1-819-821-8049 emilie.berthiaume@USherbrooke.ca [[alternative HTML version deleted]]
2013 Jun 25
1
Radio player for FirefoxOS
...stations to the app: https://marketplace.firefox.com/app/world-radio-player/ratings I would like to use their input (with their explicit consent) to push data about new streams to dir.xiph.org. On 06/10/2013 07:31 PM, "Thomas B. R?cker" wrote: > Hi, > > On 06/10/2013 02:46 PM, Emilis Dambauskas wrote: >> this looks very promising. I see the compressed version is now ~250kB. > > Yeah, that's a start and there is probably still some room for > improvement. > > >> My Firefox OS app is using this data on its first run to create a >> browser-sid...
2002 Jul 28
2
timestamp on symlink
rsync does not sync the timestamp on symlink (Solaris 8). It is probablly due to the limitation of Unix implementation of symlink, but I would like to know why rsync/Unix does not do this, and what we can do about it. Is the conclusion that "rsync syncs everything except the timestamp on symlink"? Why do I need timestamp on symlink? Supposed something stopped working because something
2019 Apr 22
2
Icecast not connecting
Hello, I’m reaching out because our online radio station (sites.up.edu/kdup/) has stopped streaming in the last week - the website itself works fine but when anyone attempts to listen to the live music stream they receive a message that says “cannot connect to the server “icecast.up.edu.” Do we need to update the server, or is this a problem that someone else can take care of? Let me know if I
2018 Aug 07
0
id <username> - doesnt list all groups
On Tue, 7 Aug 2018 12:20:04 +0200 Micha Ballmann via samba <samba at lists.samba.org> wrote: > Hello, > > my enviroment: > > All Servers are Ubuntun 16.04-18.04 > > SAMBA AD DC Server and several SAMABA DOMAIN MEMBER (connected via > WINBIND). In ADDC I've created a group "restrictaccess" and added > some users. > > Now when im typing
2004 Sep 30
1
function by
...o get the the sum of the column "SStot" for each year using the function by. The data set is named "SS". I've tried this: by (SS, year, sum(SStot)) and it's not working. Is it because there's a different number of rows for each year? How else can I do this? -- Emilie Berthiaume Graduate student Biology Departement Universit?? de Sherbrooke 2500 boul. de l'Universit?? Sherbrooke, Qu??bec J1K 2R1 CANADA T??l: 1-819-821-8000 poste 2059 Fax: 1-819-821-8049 Emilie.Berthiaume at USherbrooke.ca
2010 Aug 15
2
legend outside plot area
Hi, please can you help me. When I add a legend to a boxplot it appears inside the plot area, how do you get it into the margins? I have already changed the parameters so there is space for it on the margin on the right hand side of the graph. Thanks, Emily [[alternative HTML version deleted]]
2003 Aug 29
1
converting from courier-imap
Hello. I apologize if there is a simple answer to this question, but I haven't been able to figure it out. Our people use various clients (pine 4.50 with maildir patch, eudora, messenger, outlook, squirrelmail), and all of them work with courier-imap. But I've become very interested in dovecot after reading about it, so I'm trying it out on another server. The results are mixed.
2012 Mar 15
1
Equation as a character string
I'm trying to figure out if it's possible to use a character string as an equation, e.g: eqn1string <- "x^2 + x + 5" Then I want to tell R: 1) that eqn1string is actually an equation (even though it was stored as a character string), and 2) to apply the equation to a specified value of x (e.g. given x <- 6, what is the result of the equation). Thanks in advance for any
2006 Mar 14
1
Ordered logistic regression in R vs in SAS
...; MODEL altitude = sp wind_dir wind_speed hr; RUN; And it ran well with an good output. So my question is: Can someone tell me what is the difference between the ordered logistic regression of R and that of SAS? Does anyone have a suggestion to help me run my program in R? Thank you very much, Emilie Berthiaume graduate student Biology Department Sherbrooke University Sherbrooke, Quebec CANADA emilie.berthiaume@USherbrooke.ca [[alternative HTML version deleted]]
2023 Apr 12
3
Split String in regex while Keeping Delimiter
Hello List, ? I have a dataset consisting of strings that I want to split while saving the delimiter. ? Some example data: ?leucocyten + gramnegatieve staven +++ grampositieve staven ++? ?leucocyten ? grampositieve coccen +? ? I want to split the strings such that I get the following result: c(?leucocyten +?, ??gramnegatieve staven +++?, ??grampositieve staven ++?) c(?leucocyten ??, ?grampositieve