search for: tmk

Displaying 20 results from an estimated 37 matches for "tmk".

Did you mean: tm
2008 Jan 18
7
how to relocate a disk
Hi, I''d like to move a disk from one controller to another. This disk is part of a mirror in a zfs pool. How can one do this without having to export/import the pool or reboot the system? I tried taking it offline and online again, but then zpool says the disk is unavailable. Trying a zpool replace didn''t work because it complains that the "new" disk is part of a
2014 Jun 01
1
Win32 Service
The KH Build? What does that mean?? Mit freundlichen Gr??en Tobias - Wile C --------------------------------------- Web: http://www.djwilec.de | http://www.djwilec.com | http://www.tmk-audio.de | http://www.tmk-audio.com Socials: http://www.facebook.com/djwilec | http://twitter.com/djwilec | http://soundcloud.com/djwilec | http://www.mixcloud.com/djwilec | http://dj.beatport.com/djwilec > Am 01.06.2014 um 17:58 schrieb Greg Ogonowski <greg at indexcom.com>: > >...
2007 Mar 05
2
Linear programming with sparse matrix input format?
...t matrix. Some linear solvers I know of (not in R) have a sparse matrix input format. Are there any linear solvers in R that have a sparse matrix input format? (including the possibility of glpk, linprog, and lpSolve, in case I might have missed something in the documentation). Thanks! -- TMK -- 212-460-5430 home 917-656-5351 cell
2007 Jul 27
2
Matrix Multiplication, Floating-Point, etc.
...1 on a different Windows XP machine.) I expect this issue is very familiar and probably has been discussed in this forum before. Can someone please point me to some documentation or discussion about this? Is there some standard way to get the "correct" answer from %*%? Thanks! -- TMK -- 212-460-5430 home 917-656-5351 cell
2007 Dec 10
4
Reading through a group of .RData files
...of the files I'm loading overwrites an object in my environment. I'd like to clean this up so that I can extract the object(s) from each data file, and feed them to my function, whatever their names are, without corrupting my environment. I'd appreciate any assistance. Thanks! -- TMK --212-460-5430 home917-656-5351 cell [[alternative HTML version deleted]]
2007 Jan 18
1
Robust PCA?
...and Hubert in robust methodologies. Of course, I'd like to obtain code for this method, or another good robust PCA method, if there's one out there. I haven't noticed the existence on CRAN of a package for robust PCA (the authors of the ROBPCA method do provide MATLAB code). -- TMK -- 212-460-5430 home 917-656-5351 cell
2007 Aug 31
1
gsub warning message
...get the same result, which is what I want, but now I get a warning message. Am I actually doing something wrong that the previous versions of R didn't warn me about? Or is this warning message unwarranted? Is there a fully approved method for getting the same functionality? Thanks! -- TMK -- 212-460-5430 home 917-656-5351 cell
2010 Jan 01
0
Windows 7 .vhd "The version does not support this version of the file format" error
...comment = Home Directories read only = No browseable = No [printers] comment = All Printers path = /var/spool/samba printable = Yes browseable = No [data0] path = /data0 read only = No Terry Kennedy http://www.tmk.com terry at tmk.com New York, NY USA
2010 Oct 27
0
"server string" ignored by Windows 7?
...es = lagg0 [data] path = /data read only = No -------- Are there samba config options that can be changed to get the same be- havior on Windows 7 that I get on XP? If not, is there something that can be changed on the Windows 7 side? Terry Kennedy http://www.tmk.com terry at tmk.com New York, NY USA
2007 Feb 28
1
Efficient way to repeat rows (or columns) of a matrix?
...[,3] [1,] 1 3 5 [2,] 1 3 5 [3,] 2 4 6 [4,] 2 4 6 [5,] 2 4 6 > I just thought some of you clever programmers could show me a more efficient way. (I apologize if this question has come up before and you're tired of answering it ;-) Thanks! -- TMK -- 212-460-5430 home 917-656-5351 cell
2007 Jan 11
1
rank function and NA in 2.3.1
...26 6625 5082 What am I doing wrong? Is there a way to check whether there's a problem with the data, i.e., somehow the NA's have different values? (By the way, I have tried not using na.last, and also different ties.methods, but the NA ranks have never come out equal.) Thanks! -- TMK -- 212-460-5430 home 917-656-5351 cell
2007 Jul 09
1
factanal frustration!
...y uncorrelated. I wanted to see how closely the factors returned by factanal are to the ones that generated the data. But, as you can see, factanal hasn't cooperated! I would greatly appreciate advice from factanal users, especially those who have experienced the same error. Thanks! -- TMK -- 917-656-5351 cell 212-460-5430 home
2007 May 15
2
Testing for existence inside a function
...sts("x") it says that x exists even if y does not. If I had a separate argument to hold the text string "y" then I could check that. But is it possible to check the existence of the argument inside the function without passing its name as a separate argument? Thanks! -- TMK -- 212-460-5430 home 917-656-5351 cell
2007 Feb 02
1
Another loop - deloop question
...don't have to constitute an exact partition, theycan overlap members. y is another list of length n, each y[[i]] is a vector of the same length as g[[i]]. Now I build up the vector p as follows: p=rep(0,m) for(i in 1:n){p[g[[i]]]=p[g[[i]]]+y[[i]]} Can this loop be vectorized? Thanks! -- TMK -- 212-460-5430 home 917-656-5351 cell
2008 Jan 07
3
Seeking a more efficient way to find partition maxima
...alues) parti <- cbind( seriesIdx, c( ( seriesIdx[ -1 ] - 1 ), length( values ) ) ) return( sapply( ( 1:length(seriesIdx) ), function ( i ) {return( max( values[ parti[ i, 1 ]:parti[ i, 2 ] ] ) ) } ) ) } but I figured someone out there could come up with something cleverer. Thanks! -- TMK --212-460-5430 home917-656-5351 cellt o p k a t z @ m s n . c o m [[alternative HTML version deleted]]
2007 Feb 01
3
Can this loop be delooped?
...be a list like I had before if the subvectors are not all the same size, but if the subvectors are all the same size, it appears that I get an array. Can I force this operation to give me a list the way I want it in all cases? Or is there a better way to deloop my original code? Thanks! -- TMK -- 212-460-5430 home 917-656-5351 cell
2007 Dec 26
1
Can you recover default argument values of a function?
...t(y1), x ) where default(y1) is the default value of the y1 argument of f2. Then, inside the loop I'd have v <- f2( y0, y2,..., yn ) Is there any mechanism that tells me how many arguments a function has, and the default values of each one, if there are default values? Thanks! -- TMK --212-460-5430 home917-656-5351 cell [[alternative HTML version deleted]]
2007 Jan 03
1
na.action and simultaneous regressions
...own. Can it be done this way, or do I have to code the regressions in a loop? (By the way, since it restricts to non-missing values in all the variables simultaneously, is this because it's doing some sort of SUR or other simultaneous equation estimation behind the scenes?) Thanks! -- TMK -- 212-460-5430 home 917-656-5351 cell
1999 Jan 20
2
Multiple servers from single /usr/local
...mpletely different /usr/local/samba/host1, /usr/local/samba/host2, etc. and compiling and installing separately (using the --prefix configure option) for each host? Any guidance would be greatly appreciated! Thanks, Tom ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Tom Kinter tmk@mayo.edu 507-284-4981 Mayo Foundation Rochester MN 55905 USA ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2007 Sep 12
1
"Save to File..." option on File menu
...my problem. I am running R on Linux in a VNC window. I'd like to save my console output, but there doesn't appear to be a File menu available and I didn't start out with the sink() command. Is there any way to replicate "Save to File..." in this situation? Thanks! -- TMK -- 212-460-5430 home 917-656-5351 cell