similar to: comma as decimal separator in xtable

Displaying 20 results from an estimated 1000 matches similar to: "comma as decimal separator in xtable"

2009 May 08
2
Vim R plugin-2
Dear R users, People who uses vim in Linux/Unix may be interested in checking the plugin for R that I'm developing: http://www.vim.org/scripts/script.php?script_id=2628 The plugin includes omni completion for R objects, code indentation and communication with R running in a terminal emulator (xterm or gnome-terminal). This last feature was already present in Johannes Ranke's plugin.
2009 Oct 05
4
Vim-R-plugin (new version)
Dear R users, The author of Tinn-R (Jose Claudio Faria) now is co-author of Vim-R-plugin2, a plugin that makes it possible to send commands from the Vim text editor to R. We added many new key bindings, restructured the menu and created new Tool Bar buttons. The new version is available at: http://www.vim.org/scripts/script.php?script_id=2628 NOTES: (1) Some old key binding changed,
2012 Dec 15
1
Could Rstd_Busy do something (src/unix/sys-std.c)?
Currently the function Rstd_Busy() does nothing (src/unix/sys-std.c): void attribute_hidden Rstd_Busy(int which) { } The function is called through a pointer and R interfaces can change this pointer and, thus, use a different function. I don't plan to create a whole new interface to R, but I maintain a package whose aim is to provide a new feature to R when it's running in a
2009 Aug 06
5
Is there a 'vi' mode in R?
Hi, I'm wondering if R provide a vi mode in the command line just like other shells such as bash do. Can somebody let me know? Regards, Peng
2009 Oct 22
3
Boxplot with grouped data
Dear All, Is there some way of drawing a boxplot, with R, when one does not have the original continuous data, but only the data grouped in classes? The function boxplot() can only deal with original data. Thanks in advance, Paul
2009 May 31
1
Bug in gmodels CrossTable()?
Is the code below showing a bug in Crosstable()? My expectation was that the values produced by xtabs were rounded instead of truncated: library(gmodels) abc <- c("a", "a", "b", "b", "c", "c") def <- c("d", "e", "f", "f", "d", "e") wgt <- c(0.8, 0.6, 0.4, 0.5, 1.4, 1.3)
2010 Sep 12
4
using read.table, removing extra quotation mark from a text field? (e.g. ""cat" )
I am using read.table to import a text file within R.   There are several "errors" in my text file.  An "extra" quotation mark has inadvertently been included within a few text fields.   e.g. for a pipe (|) delimited text file, I have something similar to this:   1|7|30| "dog" 2|6|25| ""cat" 3|4|20|"" 4|5| 56| "mouse" 5|3|56|
2018 Oct 08
2
bug with OutDec option and deferred_string altrep object
While implementing R's new 'altrep' functionality in the TERR engine, I discovered a bug in R's 'deferred_string' altrep object: it is not using the correct value of the 'OutDec' option when it expands a deferred_string. See the following example: R 3.5.1: (same results in R 3.6.0 devel engine built 10/5) > options(scipen=0, OutDec=".") >
2009 Apr 22
1
Clarification for options(OutDec)
The documentation for the OutDec option says that it should be a 'one-character string'; yet, if I try a unicode character, it doesn't seem to work. Are unicode chars not counted as one-character? This is within the mac GUI, but I also see this on linux boxes. > x <- '\u00B7' > nchar(x) [1] 1 > options(OutDec=x) Error in options(OutDec = x) : invalid value for
2012 Dec 06
0
base package: extra new line at source() function
Hi, When we do source("file.R", echo = TRUE) the output on R Console includes an extra new line between each line of code. The extra "\n" is added on line 201 of src/library/base/R/source.R (please, see attached patch). I tested the function without this "\n" on an terminal emulator in Linux and on R Console in Windows RGui. I don't know if the "\n" is
2011 Nov 17
0
new package: colorout (Colorize R output on terminal emulator)
Hello, Two days ago I posted a patch to R source code to colorize its output when running it in a terminal emulator (Linux or other Unix with support to ANSI escape codes). I converted the patch into an R package, and people interested in testing it should do the following: 1) Download and install: wget http://www.lepem.ufc.br/jaa/colorout_0.1.tar.gz R CMD INSTALL colorout_0.1.tar.gz 2) Run R
2011 Nov 25
0
New package 'colorout' to colorize R output on terminal emulators
Dear R Community, I'm pleased to announce the availability of 'colorout' on CRAN. The package colorizes R output when it is running on a terminal emulator. Screenshot: http://www.lepem.ufc.br/jaa/R_color_output.png You can use either 16 colors (8 colors * 2 degrees of intensity) or 256 colors to highlight normal text, numbers, strings, warnings, errors and the keywords TRUE, FALSE,
2011 Nov 25
0
New package 'colorout' to colorize R output on terminal emulators
Dear R Community, I'm pleased to announce the availability of 'colorout' on CRAN. The package colorizes R output when it is running on a terminal emulator. Screenshot: http://www.lepem.ufc.br/jaa/R_color_output.png You can use either 16 colors (8 colors * 2 degrees of intensity) or 256 colors to highlight normal text, numbers, strings, warnings, errors and the keywords TRUE, FALSE,
2012 Aug 14
0
as.numeric and as.character with locale using comma as separator
Dear all, summary: My LC_NUMERIC is changed from C to de_DE by library (qtbase). [which shouldn't happen according to the warning when setting it back manually]. I posted an issue at their github repository, but maybe the behaviour is a bit more of general interest. However, if LC_NUMERIC is changed, as.character () uses the decimal separator that belongs to LC_NUMERIC (and not options
2013 Mar 15
1
numerics from a factor
A problem has been pointed out by a French user of the survival package and I'm looking for a pointer. > options(OutDec= ",") > fit <- survfit(Surv(1:6 /2) ~ 1) > fit$time [1] NA 1 NA 2 NA 3 A year or two ago some test cases that broke survfit were presented to me. The heart of the problem was numbers that were almost identical, where table(x) and unique(x) gave
2009 Aug 20
2
getting R 2.9.1 from the tar.gz file
Dear Sir, I am almost giving up on getting the R-2.9.1 on the ubuntu 9.04 using the instructions found on the R site. I decided to use the R-2.9.1.tar.gz and untarred it. I then typed ./configure and the results are shown below. However, on typing make, I got an error, "No targets specified and no makefile found stop" What is the solution? lmramba at LMramba-dll-d:~$ su Password:
2013 Jul 13
1
return code of 127 is out of bounds - plugin may be missing
hi sir / maam can you help me on this *return code of 127 is out of bounds - plugin may be missing* in centos configuration in nagios thank you rolly aquino -- Rolly Aquino | I.T. Support <http://www.xend.com.ph> www.xend.com.ph This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed.
2011 May 18
3
SRTP of Asterisk
Hi all, does the asterisk 1.4.x support TLS and SRTP? Thanks -- havesoftware, Inc. http://www.havesoftware.com Jakson Kalsson Senior Programmer jakkalsoon at havesoftware.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110518/56f03c61/attachment.htm>
2015 Oct 09
4
Contribute to the Wiki
Hi, My name is Norberto Aquino. username norbertoaquino I'm interested in translating the wiki for Brazilian Portuguese. Thank you -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos-docs/attachments/20151009/2110e537/attachment-0002.html>
2016 Mar 18
1
formatting of complex matrix
While working on the printing code, my colleague Zbyn?k ?lajchrt noticed that complex matrixes are sometimes misaligned: > { matrix(1i,2,13) } [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [,11] [,12] [,13] [1,] 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i [2,] 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i 0+1i (the values in the last four columns