search for: emily

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

Did you mean: emil
2006 Mar 01
3
How to do a "proc summary" in R?
Hi, I'm a SAS user trying to convert myself to R but I still have problems with some pretty simple commands. First I wanted to add up a number of red-tailed hawks seen per day (julian day) per year. So I tried: RTyrday <- tapply(RThr,list(year,julian),sum) And then I tried the following regression: mod1 <- glm(RTyrday~julian+year, family=gaussian (link=identity),data=RT) Wich
2004 Nov 11
5
expressions and paste
...imented with various things and I am at a complete loss for how to insert an expression into the middle of a title. If the expression was going in directly I would use main=expression(paste("text ", expression, " text")) but again this doesn't work. Can anyone help? thanks Emily.
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 again about the JSON API
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/software-xbmc-icecast - Java (Android), same algorithm as Python but only the SQLite
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())
I can't seem to be able to change the font size in an 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
2007 Feb 28
4
legend question
Hi to all, I'm sorry for posting this question, I am sure I am missing something important but after reading the documentation I cannot find where the problem is. I want to add a legend to a figure. If I use a simple example drawn from the R Reference Manual such as, for instance: x <- seq(-pi, pi, len = 65) plot(x, sin(x), type="l", col = 2) legend(x = -3, y = .9,
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
...om 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 sushi ls: sushi: Input/output error For the life of me I can't figure out how to unmount it: emily ~>smbumount sushi Could not open sushi: Input/output error 255 emily ~>rm -rf sushi rm: sushi: Input/output error Some various background info. First, I now h...
2005 Nov 01
1
function effect and standard error
Hi list! I did the following regression: reg1 <- glm(alti~sp + ovent + vivent + nuage, family=gaussian, data=meteo1) I was interested in knowing the effect of the species (sp) in reg1 and so I used the function «effect»: effect.sp <- effect ("sp", reg1, se=TRUE) with this output: sp AK BW NH OS RT SS 2.730101 2.885363 2.753774 2.750311
2013 Jun 25
1
Radio player for FirefoxOS
Hi, again, is there any URL where I could POST to suggest streams for dir.xiph.org? My users are demanding the ability to add their own 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: >
2002 Jul 28
2
timestamp on symlink
...? Why do I need timestamp on symlink? Supposed something stopped working because something removed the link, and then remake the link. If all I have is the rsync copy, then I would have a wrong conclusion, for example, that "nobody touched the directory since last night." Thanks. [root@emily:/tmp]ls -ls a/copying b/copying 8 lrwxrwxrwx 1 root other 7 Jul 28 12:09 a/copying -> COPYING 8 lrwxrwxrwx 1 root other 7 Jul 28 12:07 b/copying -> COPYING [root@emily:/tmp]rsync -avn /tmp/a/ /tmp/b building file list ... done wrote 25424 bytes re...
2019 Apr 22
2
Icecast not connecting
...ve 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 should contact someone else, I appreciate getting feedback on how to fix this situation as soon as possible. Thank you, Emily nelson KDUP college radio Emily Nelson University of Portland | Class of 2019 | B.A. English General Manager, KDUP College Radio Senior Co-Editor, Writers Magazine -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.xiph.org/pipermail/icecast/atta...
2018 Aug 07
0
id <username> - doesnt list all groups
...nbind enum users = Yes >  winbind use default domain = Yes >  map acl inherit = Yes >  store dos attributes = Yes >  vfs objects = acl_xattr > > What happened? > Nothing, it is just that the user will not be logged in, this is from a unix domain member that the user 'emily' isn't logged into: id emily uid=10001(emily) gid=10000(domain users) groups=10000(domain users),2001(BUILTIN\users) And from one where she is: id emily uid=10001(emily) gid=10000(domain_users) groups=10000(domain_users),10002(unixgroup),10010(group12),2001(BUILTIN\users) Rowland
2004 Sep 30
1
function by
Hi, I'm just getting started with R and I'm having problems with some simple operations: I want to 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
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
...d it was fine. Mozilla messenger is also fine, but with the same duplication of those special folders. Everything seems nice and fast. But some of our users still cling to pine, which works with courier-imap using these three lines in .pinerc: inbox-path={our.server.edu/ssl/novalidate-cert/user=emily}INBOX default-fcc={our.server.edu/ssl/novalidate-cert/user=emily}INBOX.Sent folder-collections="IMAP Folders" {our.server.edu/user=emily/ssl/novalidate-cert}INBOX.[] On the test server I'm using dovecot-0.99.10 compiled against openssl-0.9.7b in Redhat 9. This pine configuration w...
2012 Mar 15
1
Equation as a character string
...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 insight anyone may be able to offer. Emily [[alternative HTML version deleted]]
2006 Mar 14
1
Ordered logistic regression in R vs in SAS
I tried the following ordered logistic regression in R: mod1 <- polr(altitude~sp + wind_dir + wind_speed + hr, data=altioot) But when I asked The summary of my regression I got the folloing error message: > summary (mod1) Re-fitting to get Hessian Error in optim(start, fmin, gmin, method = "BFGS", hessian = Hess, ...) : the initial value of 'vmin' is not
2023 Apr 12
3
Split String in regex while Keeping Delimiter
...plit(x, split = ?(?=[\\+-]{1,3}\\s)+, perl=TRUE) ? Which results in: c(?leucocyten ?, ?+?, ??gramnegatieve staven ?, ?+?, ?+?, ?+?, ??grampositieve staven ++?) c(?leucocyten ?, ???, ?grampositieve coccen +?) ? ? Is there a function or regular expression that will make this possible? ? Kind regards, Emily ?