similar to: Possible to "import" histograms in R?

Displaying 20 results from an estimated 400 matches similar to: "Possible to "import" histograms in R?"

2008 Aug 20
2
Positioning of axis titles
Hi, I have created a plot using filled.contour() and have the problem that one of the axis titles and an axis label are overlapping. I have tried changing par()$mgp (with, e.g. par(mgp=c(4,1,0)) ), but this just makes the title go off the screen. I can't work out how to make the plot take up less space in the window, so I can hopefully change mgp and sort the problem. Is changing mgp the only
2008 Mar 27
1
Standard error values returned by lm()
Hi, This may be a stupid question, but how are the "std. error" values returned by lm() calculated? For example > summary(lm) Call: lm(formula = log10(moments[2, 1:10]) ~ log10(L_vals[1:10])) Residuals: Min 1Q Median 3Q Max -0.0052534 -0.0019473 0.0006785 0.0011740 0.0059541 Coefficients: Estimate Std. Error t value
2003 Mar 06
1
Timezones
Can anybody give me a hint why as.POSIXlt doesn't recognize the same timezones that zdump knows about (Linux Suse 8.1 and Suse 7.3)? Is there a workaround? R : Copyright 2002, The R Development Core Team Version 1.6.1 (2002-11-01) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type `license()' or `licence()' for
2012 Jul 06
3
Tables extraction in R ?
Hi, I 'm a novice user of R statistics and my hands-on experience with it is minimal. I want to create a table for my MBA course assignment that looks like the ones that SPSS and MS Excel produces ,the data that the table has to include are the following : > table(agec) agec 1 2 3 749 160 32 > x=table(agec) > x agec 1 2 3 749 160 32 > > prop.table(x) agec
2010 Feb 19
1
r help date format changes with c() vs. rbind()
Dear List, I am having a problem with dates and I would like to understand what is going on. Below is an example. I can produce a date/time using as.POSIXct, but I am trying to combine two as.POSIXct objects and keep getting strange results. I thought I was using the wrong origin, but according to structure(0,class="Date") I am not (see below). In my example a is a simple date/time
2009 May 26
2
Problem with fractional seconds
Dear List, I am having problems converting a file with fractional seconds to class POSIXct. I have set my options to include digits.secs and my format to just time, but my output is the current date with my time lacking the fractions of a second. For example: options(digits.secs=3) t<-c("06:00:00.100","06:00:01.231") myt<-as.POSIXct(t,format="%H:%M:%S")
2004 Apr 07
2
Memdisk
Memdisk 2.08 cannot boot an XP boot floppy image (XP appears to use WinME boot files for its bootable floppy). For example: http://members.iinet.net.au/~bdriver/bootdisk/download.htm This disk will not boot with Memdisk (Memdisk starts to load the image and then hangs). I'm using Bart's tools to build a boot CD: http://www.nu2.nu/corpmodboot/ Which uses Isolinux and Memdisk.
2007 Sep 14
1
Calculate the angles for a point dataset?
Dear Rusers, I'd like to take the cases of cancer of the larynx in chorley(spatstat) to explain my question. I want to join the points of cancer of the larynx with the disused industrial incinerator to generate lines, and then calculate the angles of these line comparing the horizontal line? How can i get it? It seems to be difficult to get the angles Thanks a lot. -- With Kind
2004 Jun 19
1
HST Saphir with Asterisk
Hello, I would like to use my existing HST Saphir V S2M PCI with Asterisk. Unfortunately I could not find any information about the usage with Asterisk. Does someone know if it's possible to use it? Do I need to do something special? Regards Julian Pawlowski
2007 Nov 04
4
Problems with garch() function tseries package R 2.6.0
Hi all, I recently updated my to R 2.6.0 and tseries package ?tseries? version: 0.10-11. When i was using R Version 2.3.1 (2006-06-01) with tseries 'tseries' version: 0.10-7, the code > garch(dflnRCLC1) ***** ESTIMATION WITH ANALYTICAL GRADIENT ***** Call: garch(x = dflnRCLC1) Coefficient(s): a0 a1 b1 4.985e+00 1.880e-01 6.210e-14 > worked very
2008 Aug 27
2
Error producing density curve
Hi, i have never really used R before and i need to produce a density curve for use in an assignment. Following the instructions in the manual provided with my course i keep getting this error message: "Error in plot.xy(xy, type, ...) : invalid plot type '1'" The commands i have entered are: >x=seq(0, 1800, 10) >x >f=dnorm(x, 1454.190, 162.6301) >f
2008 Sep 07
3
ON MAC, how to copy a plot on to Word document?
Yes, I don't know how to copy the plot on Mac and paste on to Word because you can't right click on the graph and say "copy as metafile." I'm so surprised I can't find any information about this anywhere on the Internet... -- View this message in context: http://www.nabble.com/ON-MAC%2C-how-to-copy-a-plot-on-to-Word-document--tp19354558p19354558.html Sent from the R
2008 Aug 30
1
need some help on r
Hi >Tdf bin TCC_TCA TCA_CR TCC_CR Time sn.rnc 117 117 258 27 314 (08/28/08 00:09:42) 50.21 118 118 251 30 291 (08/28/08 00:09:47) 50.21 119 119 247 28 289 (08/28/08 00:09:52) 50.21 120 120 251 29 282 (08/28/08 00:09:57) 50.21 121 121 276 39 320 (08/28/08 00:10:02) 50.21 122
2012 Jun 23
1
Home-Shares are not writeable
Hello everyone! After running Samba on several machines for some years, I just came accross a rather strange problem. The short story is that the special user home shares are readable, but not writeable. Here's the long story: The system is a freshly set-up Debian Squeeze, right out of the box. This is the Samba config: -------------------------------- 8<
2007 May 16
3
Reshape a sparse matrix
Hi, I'd like to reshape a sparse matrix generated from the Matrix package. I can't seem to do it with the command dim(A) <- c(6,9) which works perfectly with the base package matrices, but with the sparse matrices it errors with Error in dim(A) = c(6, 9) : dim<- : invalid first argument Manipulating the Dim attribute of the sparse Matrix does not produce the desired effect. A
2002 Jul 19
3
Automatic adjustment of axis ranges
I had a look at this, and worked out most of a function to do it. There are three things I haven't been able to figure out, however. 1) Getting the last N lines of the command history into a vector of strings. I thought something like: last.commands<-history(N) would work, but no go. There doesn't seem to be a file that I can tail, either. 2) Finding continuation lines by
2006 Mar 30
3
Please Help Test Quad PRI Using NFAS
Please help me test my setup by dialing 800.564.0215 and listen to the queue for a bit. I have a quad port T1 with NFAS setup. I can dial-out but I cannot dial any 800 numbers (Global Crossing says I need LDS service and that will be a couple weeks) so I cant test it myself. I need at least 24 callers to feel comfortable enough that it is working properly. Thanks, Steve Totaro
2008 Sep 06
3
I don't know how to run a r-code written in emacs
Hi, I just installed R, I'm work in UBUNTU and I don't have idea about how to run a r-code written in emacs into the shell. Well I am in a shell, and obviously I can run simple commands over there, Must I compile the program? if yes, How must I do that? what is the extension? I really appreciate your help -- View this message in context:
2012 Jun 27
2
WINS doesn't work on some ip addresses in multihome setup
Hello everybody! Still struggeling with my latest Samba setup, I've just run accross another problem which I can't figure out on my own. Samba is supposed to act as a WINS server (among other things) on a multihomed machine. (The Samba version is 3.5.1 as part of Debian Squeeze) Here's the [global] part of the samba setup: ----------------------------------- 8<
2011 Jul 25
1
kernel 3.0.0 mainline and drbd 8.4
hi xen user/dev list, i want to compile drbd 8.4 against kernel mainline 3.0 source and receive an error: my commands: # cd /usr/src/drbd-8.4.0 # ./autogen.sh # ./configure --localstatedir=/var --sysconfdir=/etc --with-km=yes # cd /usr/src/drbd-8.4.0/drbd # make clean # make KDIR=/usr/src/linux-3.0 the error message: *** In file included from include/linux/security.h:25,