search for: ma

Displaying 20 results from an estimated 5423 matches for "ma".

Did you mean: may
2016 Jun 30
1
netbook screen suddenly goes black
...h my! :) I'm looking around in /proc to see if I can find out which generation of Intel video it has. I don't see it in /proc/cpuinfo, can someone advise me where to look for this info? LATER: this site: http://www.cpu-world.com/CPUs/Atom/Intel-Atom%20N570.html says its graphics engine is GMA-3150. lsmod shows that we have the i915 module loaded (is that correct for a GMA-3150 graphics chipset?) along with drm_kms_helper and drm. I'll let it stay in its current (broken) state for a while in case any of you smart guys can suggest other places to look, or things to look for. thanks...
2016 Jun 20
2
netbook screen suddenly goes black
...ing solitaire > >> > and moving the mouse around a lot. > >> > > >> I recently had the opposite problem. I'd comback to a laptop > >> I knew I had turned off and it was up and running. > >> > >> Turns out the bios had a setting to automatically power up > >> at 1:30 AM. Perhaps your bios has a "shut down at ..." > >> setting? > >> > >> jl > > > > thanks for the suggestion! > > > > but I kinda doubt that's it, this has been highly rare, and doesn't do it...
2005 Mar 08
0
Re: [linux-cifs-client] Mounting directories below share level
On Friday 4th March 2005, Steven French said, in part: > I did some experiments and confirmed that for this "deep mapping" > (http://www.windowsnetworking.com/articles_tutorials/w2kdmap.html) mount of > a complex target ie \\server\share\dir > 1) the path component following the share name i...
2010 Jul 08
2
strsplit("dia ma", "\\b") splits characterwise
\b is word boundary. But, unexpectedly, strsplit("dia ma", "\\b") splits character by character. > strsplit("dia ma", "\\b") [[1]] [1] "d" "i" "a" " " "m" "a" > strsplit("dia ma", "\\b", perl=TRUE) [[1]] [1] "d" "i&quo...
2007 Jan 19
4
Vectorize rearrangement within each column
Consider a matrix like > ma = matrix(10:15, nr = 3) > ma [,1] [,2] [1,] 10 13 [2,] 11 14 [3,] 12 15 I want to rearrange each column according to row indexes (1 to 3) given in another matrix, as in > idx = matrix(c(1,3,2, 2,3,1), nr = 3) > idx [,1] [,2] [1,] 1 2...
2004 Dec 16
0
Very slow network after Samba3 upgrade with 2k clients.
anyone having, had, or even have any thoughts on the issue described below? its killing me.... The short description of the problem is: using direct to server UNC type paths, we see 'normal' speeds. Going threw a DFS (re)director, we see very bad performance from any machine running 3.0.*, but not 2.2.3a. We make heavy use of DFS. This service is on a machine named "N". This is running SAMBA3 code. The PDC services are handled by Samba3 with an LDAP backend....
2017 Apr 19
2
Crash after (wrongly) applying product operator on S4 object that derives from list
Dear Hilmar Perhaps this gives an indication of why the infinite recursion happens: ## after calling `*` on ma and a matrix: > showMethods(classes=class(ma), includeDefs=TRUE, inherited = TRUE) Function: * (package base) e1="FOOCLASS", e2="matrix" (inherited from: e1="vect...
2017 Apr 18
3
Crash after (wrongly) applying product operator on object from LIMMA package
Hi, this is a problem that occurs in the presence of two libraries (limma, xlsx) and leads to a crash of R. The problematic code is the wrong application of sweep or the product ("*") function on an LIMMA MAList object. To my knowledge, limma does not define a "*" method for MAList objects. If only LIMMA is loaded but not package xlsx, the code d...
2011 Jul 23
2
analizing .txt file with R or an other program
Hello together I have a .txt file with about 1Mio! rows. Sometimes the rows are in the following order (whereas the number of rows between the rows marked with an x differ): ... *SBLINK R 5261507*x 5261439 516.4 364.3 9148.0 ... 816.0 -1133.0 48.4 MA.C.TB...BL. 5261441 516.4 364.0 9145.0 ... 799.0 -1135.0 48.7 MA.C.TB...B.. 5261443 516.4 363.9 9140.0 ... 817.0 -1171.0 49.3 MA.C.TB.....R *MSG 5261445 Prime 11_fe_h...
2012 Dec 04
0
[PATCH] Update FSF address.
--- COPYING.GPL | 43 +++++++++++----------- doc/Makefile.am | 6 +-- doc/Makefile.lite | 6 +-- examples/c/decode/file/Makefile.am | 6 +-- examples/c/decode/file/Makefile.lite | 6 +-- examples/c/decode/file/main.c | 6 +-- e...
2011 Sep 09
1
Question about plot.mona {cluster}
Hello all, I what to print the banner plot that is output from the mona method in the cluster package but the problem is I dont want to print all that red ink. Here is an example: data(animals) ma <- mona(animals) ma ## Plot similar to Figure 10 in Struyf et al (1996) plot(ma) I can change the bar color by using the argument col=c(0,0) - plot(ma,col=c(0,0)) - but then the variable labels also get colored white. Is there a way to remove the bar colors but leave the variables colored...
2017 Apr 24
2
Crash after (wrongly) applying product operator on object from LIMMA package
Hi Hilmar, weird. The memory problem seems be due to recursion (my R, version 3.3.3, says: Error: evaluation nested too deeply: infinite recursion / options(expressions=)?, just write traceback() to see how it happens), but why does it segfault with xlsx? Nb xlsx is the culprit: neither rJava nor xlsxjars...
2012 Feb 10
0
a) t-tests on loess splines; b) linear models, type II SS for unbalanced ANOVA
Dear all, I have some questions regarding the validity an implementation of statistical tests based on linear models and loess. I've searched the R-help arhives and found several informative threads that related to my questions, but there are still a few issues I'm not clear about. I'd be grateful for guidance. Background and data set: I wish to compare the growth and metabolism of 2 strains of bacteria. I have grown the 2 strains in 3 replicates on 2 different occasio...
2008 Aug 26
1
loop with splitted data
Hi to all, seems to be simple, but I do not find the solution: What must I write for the splitted ???? to get splitted$"3"$x and splitted$"3"$x y = c(rep(2,5),rep(3,5)) ma <- data.frame(x = 1:10, y=y ) splitted <- split(ma, ma$y) for (counter in (min(ma$y):max(ma$y))) { splitted????$x } Regards Knut
2017 Apr 19
0
Crash after (wrongly) applying product operator on S4 object that derives from list
...ava messing with the stack, see e.g. http://r.789695.n4.nabble.com/Error-memory-exhausted-limit-reached-td4729708.html. I'll fix the infinite recursion caused by the methods package. Michael On Wed, Apr 19, 2017 at 1:12 AM, Wolfgang Huber <wolfgang.huber at embl.de> wrote: > Dear Hilmar > > Perhaps this gives an indication of why the infinite recursion happens: > > ## after calling `*` on ma and a matrix: > >> showMethods(classes=class(ma), includeDefs=TRUE, inherited = TRUE) > > > Function: * (package base) > e1="FOOCLASS", e2="mat...
2010 Mar 25
1
cmusieve auto-reply and quota
...e new to Dovecot, but already can tell that it is a really great work, congrats to the developers! But I'm having a little problem and couldn't figure it out how to solve. First, let me talk about my setup: I'm running Debian 5 (Lenny) with it's default Dovecot (common, pop3 and imap) packages (version 1:1.0.15-2.3+lenny1), I really would like to keep it this way unless I haven't another option. All authentication is made through a MS Active Directory and messages delivered to a virtual mailbox (/var/vmail/<domain>/<mailbox>), using Postfix as SMTP, that uses...
2005 Jul 26
3
farimaSim
Hello! I installed the fSeries package to get some farima time-series which i tried with farimaSim, but unfortunately i got always an error. I tried it this way: > farimaSim(n = 1000, model = list(ar = 0.5, d = 0.3, ma = 0.1), method="freq") Error in farimaSim(n = 1000, model = list(ar = 0.5, d = 0.3, ma = 0.1), : ... used in an incorrec...
2010 Jul 12
1
[PATCH] ocfs2: Don't duplicate page passes i_size during CoW.
During CoW, actually all the pages after i_size contains garbage data, so don't read and duplicate them. Signed-off-by: Tao Ma <tao.ma at oracle.com> --- fs/ocfs2/refcounttree.c | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/fs/ocfs2/refcounttree.c b/fs/ocfs2/refcounttree.c index 1cf9cda..e082623 100644 --- a/fs/ocfs2/refcounttree.c +++ b/fs/ocfs2/refcounttree.c @@ -2921,7 +2921,7...
2009 Aug 20
2
Include a directory inside an excluded one?
Hello, On my windows xp machine, with cygwin, I run rsync to backup important files on another drive (samba share, mapped on h:). It works fine. I currently use the following command line: rsync -rtv --del --delete-excluded --progress --iconv=ISO-8859-1,UTF-8 --partial \ --exclude "/Videos/" \ --ex...
1997 Aug 20
1
R-alpha: R-0.50-a3: [logical, drop = FALSE] -- bug in R (and S-plus)
This is a bug both in R and S-plus (in R it's "worse"), I think. Look at this : ma <- cbind(1,1:8); logi <- rep(c(T,F),4) ma[logi,] ##> [,1] [,2] ##> [1,] 1 1 ##> [2,] 1 3 ##> [3,] 1 5 ##> [4,] 1 7 ##-- now the same with [ , drop = FALSE] ## R (-0.50-a3) : ma[logi, drop = F] ##>> Error: invalid subscript type ## Splu...