similar to: mean and sd with number of values?

Displaying 20 results from an estimated 1000 matches similar to: "mean and sd with number of values?"

2008 Mar 04
4
R-Terminal
Hi there! I use an gnome-terminal for using R. When I resize the termial to the maximum size, R uses only the left side of the window. Can I tell R to use the whole window somehow? Thanks, Martin -- Ihr Partner f?r Webdesign, Webapplikationen und Webspace. http://www.roomandspace.com/ Martin Kaffanke +43 650 4514224 -------------- next part -------------- A non-text attachment was
2008 Mar 10
3
format a number
Hi there! I have i.e. v = c(0.43554, -0.22343), and so on. Now I'd like to make a format like format(v, digits=2) but without the leading 0, so 0.43554 becomes .44, -0.22343 becomes -.22 How can I do that? runnable example for copy and paste: v = c(0.43554, -0.22343) format(v, digits=2) Thanks, Martin -- Ihr Partner f?r Webdesign, Webapplikationen und Webspace.
2008 Mar 05
2
Correlation matrix one side with significance
Hi there! In my case, cor(d[1:20]) makes me a good correlation matrix. Now I'd like to have it one sided, means only the left bottom side to be printed (the others are the same) and I'd like to have * where the p-value is lower than 0.05 and ** lower than 0.01. How can I do this? And another thing: Is there a way to output that table as a latex table? Thanks, Martin -- Ihr
2008 Mar 03
1
names of data.frame variables?
Hi there! I'd like to make many tests and plots, for each variables. i.E. i <- 1 repeat { print (t.test(e[i], f[i])) i <- i + 1 if (i == 21) break } but the output is: Welch Two Sample t-test data: e[i] and f[i] ... so I don't know which data was calculated. Is there a way to tell the t.test or I'll make the same with plotmeans (from the gplots library)
2008 Mar 13
1
Compare two correlations matrices
Hi there, When I make two correlations matrices of the same size from a <- cor(el[1:20]) b <- cor(fl[1:20]) how can I compare if this matrices are equal? Thanks, Martin -- Ihr Partner f?r Webdesign, Webapplikationen und Webspace. http://www.roomandspace.com/ Martin Kaffanke +43 650 4514224 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available
2008 Mar 13
1
factanal and plotting?
Hi there! To make a good choice for the estimation of the number of usefull factors. And I'd like to plot a graph like: http://de.wikipedia.org/wiki/Bild:Parallelanalyse.jpg where I don't need the green line (random values). But with str(factanal(data, factors=10)) I cannot figure out where I can find the values for plotting. Can you please help me in this question? Thanks, Martin
2008 Mar 08
1
ks.test troubles
Hi there! I have two little different data. One is a computer test on people, the other is a paper and pencil test. two boxplots show me that the data is almost the same. So now I'd like to know if I could handle all data as one, by testing with ks.test: ==== > ks.test(el$angststoer, fl$angststoer) Two-sample Kolmogorov-Smirnov test data: el$angststoer and fl$angststoer D =
2013 Oct 28
3
Trouble on kernel
Am 2013-10-28 15:42, schrieb Ilia Mirkin: > On Mon, Oct 28, 2013 at 3:45 AM, Martin Kaffanke <martin.kaffanke at gmx.at> wrote: >> Hi there, >> >> Sometimes my computer crashes since i use now ubuntu 13.10 with >> unity/compiz. > > You're on NV4C. Do you have mesa 9.2.1 or later (or pre-9.2)? If you > have 9.2.0, there are known issues with shader
2001 Sep 19
2
compilation
Hello, I would like to compile the Ogg Vorbis libraries and tools on my Slackware 7.0 box. Unfortunatelly Slack is comming with gcc 2.91.66 which is not suited for compilation of these libraries and tools. I downloaded, compiled and installed in a separate directory tree gcc 2.95.3 but now I really don't know how to make the configure script see it and set it properly as the compiler to be
2008 Jun 10
4
Hello
Hello, I am facing a problem in drawing heat map using R. I have a 70X3 matrix and I want to draw a heat map with 1 coloumn on X axis another on Y axis and want to show the value of 3rd coloumn using heat colours. Could you please help me with this . Thank you . Regards, Sumit [[alternative HTML version deleted]]
2013 Nov 08
14
[Bug 71382] New: Nouveau dmesg error, computer hangs
https://bugs.freedesktop.org/show_bug.cgi?id=71382 Priority: medium Bug ID: 71382 Assignee: nouveau at lists.freedesktop.org Summary: Nouveau dmesg error, computer hangs QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: All Reporter: martin.kaffanke at gmx.at
2013 Oct 28
2
Trouble on kernel
Hi there, Sometimes my computer crashes since i use now ubuntu 13.10 with unity/compiz. dmesg tells me: [ 686.209019] nouveau E[ PBUS][0000:00:0d.0] MMIO write of 0x00000000 FAULT at 0x00b020 and later: [ 1425.565441] nouveau E[ PGRAPH][0000:00:0d.0] ERROR nsource: DATA_ERROR nstatus: BAD_ARGUMENT [ 1425.565462] nouveau E[ PGRAPH][0000:00:0d.0] ch 3 [0x00056000 compiz[1970]] subc 2
2013 Oct 20
2
Upgrade from 2.1 to 2.2 on Debian
Hello, I am currently running Dovecot 2.1 on current Debian and need to upgrade to 2.2 to use the replication features. I understand that I therefore need to compile Dovecot myself. I am using a MySQL database for users authentication, therefore I need to compile Dovecot with mysql support: *./configure --with-mysql* Unfortunately this terminates with: *configure: error: Can't build with
2010 Feb 04
5
export test results to csv
Hi everybody! I would like to export the results of a test statistic in a *.csv file, but get an error. The code is below. The data are attached as .txt with tab as separator. I tried to get a sample dataset, but for some reason it didn't work, so please excuse the length of the file. I also attached a txt with the output (copy/paste) in case that helps. ---- > library(WRS) >
2005 Sep 03
2
Windowed Programm support broken?
Hi folks! I've just installed the new wine version as suse 9.3 rpm (wine-20050830-SuSELinux93.i586.rpm) from winehq.org and noticed, that the following entry in my config seems to have no effect: [AppDefaults\\CAO32_DB.exe\\x11drv] "Desktop" = "928x696" It does not start anymore in a windowed wine as it should. has there changed something? is this config not being
2010 Mar 17
3
Adding minutes to 24 hour time
Hi, Does anyone know how to add minutes (up to 100 min) to a 24 hour time, to create a new 24 hour time? I can't seem to find any documentation or examples explaining how to do this. The variables of interest are 'ARRIVE','WAIT', and 'DEPART' in the attached partial dataframe. I want 'DEPART' to be the "sum" of 'ARRIVE' and 'WAIT' in
2009 Jun 28
5
OT: Linux WYSIWYG HTML Editors
I have KomPozer installed, but after using M$ FrontPage for years, KomPozer looks like it is going to have a learning curve and I want to get away from FrontPage and Windows. I know Mark (MHR) uses SeaMonkey. Wondering if there is anything else I can use on Linux that is easier on a FrontPage user. I found this article: <http://webdesign.about.com/od/htmleditors/tp/aatpwyslinux.htm> when I
2009 Oct 07
3
two plots on the same axis
Good morning. I wish to plot two data on the same axis. I tried plot(x,y, type = "l") for the first and tried to use lines or points(x,y, lty = 2, col = 4) to add or plot the second data on alongside the first. However, what I got was not encouraging. I have attached the two data and would be pleased if anybody could be of help. Thank you Best regards Ogbos -------------- next part
2013 Oct 28
2
Dovecot replication - I'm stuck
Hi, I've been following the wiki document at http://wiki2.dovecot.org/Replication, but I've become stuck. I'm running version 2.1.3 on NetBSD 5.2 (v2.2+ isn't available as a package yet, and compiling my own is well outside my wheelhouse). I have a couple of questions: The wiki page keeps referring to "vmail". Is this a just system user I need to create? Presumably
2005 Nov 08
8
do I have to worry if executing an exe that may contain a virus under Wine?
Hi, I have a question: do I have to worry if I run with wine an executable that may contain a virus (I am running linux as a normal user, not root)? -- Peter Kostov, webdesigner, photographer Sofia, Bulgaria Home sites - www.webdesign.light-bg.com - www.light-bg.com