similar to: sd with n not n-1

Displaying 20 results from an estimated 5000 matches similar to: "sd with n not n-1"

2007 May 21
1
how to abort script with message
it is desired to abort an R script with a message, returning to the R prompt, pending 'if' results, as follows: ------------------------ first part of script . . if (condition) { action } else { 'error' abort } . . remainder of script --------------------------- note: 'stop' aborts the current script expression but keeps running the script.[too little]
2007 Jun 28
3
Centos 5 OpenOffice 2.0.4-5.4.17.2
Content-type: Multipart/Alternative; boundary="Alt-Boundary-19583.13106888" --Alt-Boundary-19583.13106888 I noticed that there are no openoffice.org-xxx-2.0.4-5.4.17.2 rpms in Centos 5 update. So I tried to build openoffice 2.0.4-5.4.17.2 (sans language packs) on a x86_64 from RH 5 source rpm. The build bombed after an hour elapsed and it used up about 10 GB of space with an error
2005 Sep 04
2
Blew away MySQL
Unfortunately, I blew MySQL away by replacing the MySQL control tables with others and not making a copy of the folder. My data is backed up, so that is not a problem, but I cannot reinstall MySQL and create the mysql directory with the control tables (e.g. user, db, host). I have run "yum remove mysql" and "yum install mysql" and "yum install mysql-server" and
2004 Sep 25
3
[LLVMdev] broken build?
Hi Reid, You've got a TimeValue.cpp which it looks like you just added to lib/System, but I can't compile it on Darwin because there's no Darwin/TimeValue.cpp. This breaks my ppc build. I'm not sure what TimeValue was supposed to be for, so I just blew it away in my tree. Please take a look at this. -Brian -- gaeke at uiuc.edu
2006 Jul 23
5
All screwed up
I've apparently made a mess of clamav. Tried uninstalling it, and excluded it from dag's repo. Now, when I yum install clamav and clamav-server, I'm apparently missing all the libs, data and so forth. Can someone tell me what I need to do to get this back ? I probably blew all the old stuff away during the update or later, and don't have a clue as to why it's not doing
2009 Dec 08
1
Printing 'k' levels of factors 'n' times each, but 'n' is unequal for all levels ?
Dear List, I need to print out each of 'k' levels of a factor 'n' times each, where 'n' is the number of elements belonging to each factor. I know that this can normally be done using the gl() command, but in my case, each level 'k' has an unequal number of elements. Example with code is as below: vc<-read.table("P:\\Transit\\CORRECT
2004 Sep 25
0
[LLVMdev] broken build?
This should be fixed. Sorry for the breakage. I forgot to commit a bunch of files. Reid. On Fri, 2004-09-24 at 20:33, Brian R. Gaeke wrote: > Hi Reid, > > You've got a TimeValue.cpp which it looks like you just added to lib/System, > but I can't compile it on Darwin because there's no Darwin/TimeValue.cpp. > This breaks my ppc build. I'm not sure what TimeValue
2010 May 06
2
Windows 2008 R2 / one way trust / Samba
Here is our configuration - we have a Windows 2003 domain I'll call 'corporate' and a Windows 2008 domain I'll call 'lab'. There is a one-way trust (users can log into 'lab' machines using 'corporate' creds). We have a linux box running samba that is a member of 'lab'. Users log into their Windows machines using a 'corporate' credential and
2018 Nov 18
3
CentOS 7 + GNOME : all icon themes broken after update from CR
I did the update from CR, and have some pretty serious issues.? Until I blew away (by mv to a different name) the .local and .config directory trees, I couldn't log in to GNOME at all.? After doing that, I can log in, but if I do any actual work, GNOME crashes, and abrt-cli from root in vc 2 tells me that gnome-shell got a SIGSEGV.?I figure all of the updates aren't in CR yet, so I'm
2007 Sep 13
2
zpool versioning
Hi, I was wondering if anyone would know if this is just an accounting-type error with the recorded "version=" stored on disk, or if there are/could-be any deeper issues with an "upgraded" zpool? I created a pool under a Sol10_x86_u3 install (11/06?), and zdb correctly reported the pool as a "version=3" pool. I reinstalled the OS with a u4 (08/07), ran zpool
2005 Sep 02
2
installing on 915GAVL motherboard kernel bombs and/or X bombs
I got a new box today. 915GAVL motherboard. Celeron 2.4G 1 GIG mem 80GIG SATA drive. When I boot centos I have had various stages of success. Once I got as far as partitioning the disk manually and X blew and the machine rebooted. Couple times I have had kernel crashes at different stages of install. I have not has trouble installing before and was wondering if there are suggestions. I did
2007 Oct 03
2
Weird bug: system instability after cat /proc/kcore
Ok, the existence of this bug just blew my mind. It appears that after coppying /proc/kcore to disk the system starts to behave strangely. Processes start to sometimes segfault randomly or die with a glibc double free error. The system is perfectly fine prior to catting /proc/kcore. I can reproduce this problem on the 2.6.18 kernel from xen 3.1.0 and 3.1.1-rc2. To trigger it I just have to run
2004 Aug 22
2
HELP - 'version mismatch' error?
On a linux RedHat-9 PC, I had wine set up and running fine (the version that came with the RH distro and perhaps updated via the RH update service when it used to be available). For example, I sucessfully ran Xnews on my linux box under wine. However, certain other windows apps did not work so i thought perhaps I would update to the latest cvs version of wine (the RH-9.0 version being well behind
2004 Aug 10
4
Cisco 12sp+ and 30VIP
I've searched high and lo and googled to I can't google no more... I knew that Cisco bought Selsius to get their VoIP solution but what I didn't know was that the 12sp+ is based upon an ITE-12 product that is apparently used at universities. I've taken two of the phones apart and started swapping parts and have looked up the IC's on the Internet... Anyway... After using
2003 Dec 18
3
diagnostic information in glm. How about N of missing observations?
I handed out some results from glm() and the students ask "how many observations were dropped due to missing values"? How would I know? In other stat programs, the results will typically include N and the number dropped because of missings. Without going back to R and fiddling about to find the total number of rows in the dataframe, there is no way to tell. Somewhat
2009 Apr 15
3
Extending a vector to length n
In general, how can I increase a vector of length m (< n) to length n by padding it with m - n missing values, without losing attributes? The two approaches I've tried, using length<- and adding missings with c, do not work in general: > a <- as.Date("2008-01-01") > c(a, NA) [1] "2008-01-01" NA > length(a) <- 2 > a [1] 13879 NA > b <-
2007 Feb 14
2
running wine wihtout X windows
Is it possible to run wine (wineconsole??) without X windows. I just have a simple character app that executes in a DOS window and uses printf(). I tried 0.9.30 and wineconsole doing control_alt_f1 and it BLEW I couldnt even alt_f7 to get back. I had to reboot. Should this be possible? If so how? Jerry
2007 Feb 28
1
Any reason not to further restrict the action names hidden by default?
A couple of years ago, no objections were voiced to a proposed patch of ActionController that would allow controllers to have methods with the same names as Object''s methods (currently, ActionController::Base.hidden_actions, as called by action_methods, prevents this). Such a change is of interest to me since I just blew some time figuring out why rails wasn''t finding a
2015 Mar 10
1
vm live storage migration failure.
Hi all, When I migrate a live vm with two virtual disk images from one node to another. Bothe of the nodes are in the same LAN and there is no shared storage. I run the following command and get the output blew: yyang@node1:~$ sudo virsh migrate --live --persistent --copy-storage-all --unsafe --verbose vm1 qemu+ssh://192.168.1.3/system root@192.168.1.3's password: root@192.168.1.3's
2010 Jul 07
1
Child windows doesn't interact with mouse input.
Hi all, I'm quite new to Wine, but sofar I just LOVE it! It just blew me away how many essential windows-only apps now run under Linux. I'm having one curious problem with a financial program (Exact Compact for Windows) I have to work with. It installs and it runs just perfect, except that the childwindows it generates (which are crucial) don't accept any click from the mouse. To make