similar to: Find out what "native.enc" corresponds to

Displaying 20 results from an estimated 5000 matches similar to: "Find out what "native.enc" corresponds to"

2013 Mar 04
3
What package can I use to help me categorize comment responses?
Hi, We have comment questions from a survey that we need to categorize. What package and functions can I use in R to help do this? Daniel Lopez Lawrence Livermore Labs SHRM [[alternative HTML version deleted]]
2013 Apr 16
0
Hosting Omegahat package on CRAN?
Hi list! For a package providing a GUI intended in particular at R newcomers (RcmdrPlugin.temis[1]), I would like to use the Rstem package [2] by Duncan Temple Lang, which is hosted on Omegahat only. This means the package cannot be installed automatically as a dependency, which I can work around by installing the package from my code when the user needs it. But Omegahat does not provide binaries
2004 Oct 22
1
R2HTML installation on R 1.9.1
Hello, I am trying to install R2HTML version 1.4-3, but am getting errors when I try to use it. I am running R 1.9.1 on Redhat Linux Ent 3 AS x86_64. I installed R2HTML using the following command "R CMD INSTALL R2HTML_1.4-3.tar.gz". I did not get any errors when installing it. When I launch R and type library('R2HTML'), I get the following error: >
2013 Feb 21
4
Getting htmlParse to work with Hebrew? (on windows)
Hello dear R-help mailing list. Looks like the same issue in Russian: library(RCurl) library(XML) u = " http://www.cian.ru/cat.php?deal_type=2&obl_id=1&room1=1" a = getURL(u) a # Here - the Russian is fine. a2 <- htmlParse(a) a2 # Here it is a mess... None of these seem to fix it: htmlParse(a, encoding = "windows-1251") htmlParse(a, encoding =
2006 Jun 03
1
HTML masked (due to Rpad?)
With an older verion of R (I think 2.2.0) and an older version of Rpad I used to use HTML(go, collapse=false) where go is list of objects returned by a function and this worked great. Now that I have done some upgrading (to R 2.3.1 and Rpad 1.1.0) its not working right. I also get a warning when I start R that HTML is masked. And when I do ?HTML R tells me that HTML shows up in to places, Rpad
2007 Jun 18
1
Loading problem with R2HTML package
I have downloaded latest version of R2HTML (v1.54) for 64-bit windows PC. My R version 2.5.0. My problem arises when i want to install SciViews-R which need R2HTML package. > library(R2HTML) Error in `parent.env<-`(`*tmp*`, value = NULL) : use of NULL environment is defunct Error: package/namespace load failed for 'R2HTML' Any remedy ? Regards -- View this message in
2007 Jan 26
1
CGIwithR and visible output of 'invisible(capture.output(library(...)))'
Dear alltogether, I want to use CGIwithR in conjunction with R2HTML. A small example called 'test.R': ##### #! /usr/bin/R invisible(capture.output(library(R2HTML))) HTML(summary(as.numeric(scanText(formData$numbers))), file=stdout()) ##### The script gets its input via 'CGIwithR.cgi' and contains the variable "numbers." The 'HTML' output (-> summary() in
2015 Jun 16
4
Bugzilla activity?
Hi! I was wondering whether anybody was looking at the bugs on Bugzilla. I'm asking because I've seen bugs tackled on the mailing list quite quickly, but two fully reproducible reports I've filed on Bugzilla haven't triggered any reaction in several weeks (for the older one). FWIW, these are: - Line goes beyond plot region
2009 May 27
1
no internal function "int.unzip" in R 2.9.0 for Windows
> library(R2HTML) Loading required package: R2HTML Error in .Internal(int.unzip(zipname, NULL, dest)) : no internal function "int.unzip" Error : .onLoad failed in 'loadNamespace' for 'R2HTML' Error: package 'R2HTML' could not be loaded Version: R 2.9.0 for Windows ****Internet Email Confidentiality Footer**** Privileged/Confidential
2010 Aug 01
2
R2HTML giving "NULL" in output
Dear List, I am using R 2.11.1 and R2HTML 2.1. I am able to write output to an HTML file but after every line of output I get a line saying NULL. R2HTML seems to be including <p class='character'>NULL</p> after each entry. Here is an example of my R code and the source of the HTML... HTMLStart(outdir=OutPath, file="M1000.Report", extension="html",
2007 Jul 17
2
Combine R2HTML and Rcmd BATCH?
Hi All, I have an R script that spawns output in the form of an HTML page. This is done by the R2HTML package. Now I want to run the same script using Rcmd BATCH. However, it seems that it is not possible to use R2HTML in this case. My script ends with this error message: ######################### Error in dev.print(png, file = AbsGraphFileName, width = Width, height = Height, : can only
2006 Jun 25
2
R Reporting - PDF/HTML mature presentation quality package?
I heartily second Phillipe's response. I just started a new job and the first thing required was a neat stats report for a dataset. I thought I would give R2HTML a try and about 5 minutes after downloading it, I was looking at the first draft of the report. I did have to do a bit of hacking on the graphics, but it was easy and I can now present the report first thing in the morning. Had I
2007 May 03
2
Install SciView under Windows Vista
Hello- I have been trying to install SciView under Windows Vista (Home Premium version, 32 bit OS, Intel Core Duo 2.13GHz, 2Gig RAM). I am getting an error, apparently related to the R2HTML package (version 1.54) as you will see in the R information below my signature. I have tried to email directly to support@sciviews.org for support but have had my message returned as undeliverable. Your help
2006 Oct 13
2
bug: Editing function formals deletes the environment
First, here's the specific bug I have. Later I'll say why I care. > ls(zappo) Error in try(name) : object "zappo" not found # good. > f = function(zappo) { function(y) zappo + y } > g = f(1) > g(1) [1] 2 > formals(g) $y > formals(g)$y > formals(g)$y = 2 > g function (y = 2) zappo + y > g(1) Error in g(1) : object "zappo" not found
2013 May 21
1
Lattice, ggplot, and pointsize
Hi! When inserting R plots into a document using odfWeave, I fought for a while to get Lattice plots use the same text size as base plots. I eventually discovered that specifying a point size via e.g. svg(pointsize=10) has no effect on Lattice plots. One needs to adjust the size manually via: trellis.par.set(fontsize=list(text=10, points=8)) This is also developed for both Lattice and ggplot2 by
2013 Jan 27
1
decimal places in R2HTML
Dear R People: I have an AOV model that I get confidence intervals from via > confint(chick1.aov1) 2.5 % 97.5 % trtA 1.472085 1.607915 trtB 1.512085 1.647915 trtC 1.328751 1.464582 > I am using R2HTML to produce HTML output. However, the HTML code itself just has rounded values, i.e., 1.5 and 1.6. Has anyone run across this, please? Any suggestions would be much appreciated.
2004 Aug 17
1
checkS3methods() change
Hi, I'm using rw2000dev.exe (Win32) built on August 14. If this isn't already planned, can I suggest that when checkS3methods() (called by R CMD check) fails because of a syntax error in a dependent package listed in the DESCRIPTION file of the main package being checked, it would be nice if checkS3methods() reported which dependent package caused it to fail? Running R CMD check on my
2004 Apr 20
1
Error while loading R2HTML in Rprofile
Hi List, When loading library(R2HTML) in Rprofile I get the following error: Error in firstlib(which.lib.loc, package) : couldn't find function "ps.options" Error in library(R2HTML) : .First.lib failed [Previously saved workspace restored] % ps.options is there % Loading the library from the command prompt works fine, other libraries load fine through Rprofile. % This
2010 Jan 03
3
R2HTML Report number format, or Better Way?
Here I am again with question I'll feel foolish for asking, when I see the answer. I'm trying to produce a report and here's where I get stuck: How do I get R2HTML to produce the same number format? Particularly remove the decimal places for Par and Sal. Are there better methods to produce this type of report? Thanks, L.A. R version 2.10.0 XP
2007 Nov 05
1
R2HTML package and Open Office: text only pasted
I am trying to use R2HTML (just downloaded from CRAN) to paste R (2.6.0) results output via the clipboard to OpenOffice Writer and Calc (version 2.3on WinXPPro) Pasting into Excel gives a formatted table of results (as expected), but pasting into Calc simply pastes the HTML code. Trying paste special only gives an option to paste unformatted text. Equally, with Writer, in the past when I tried