similar to: Startup process: Objects are automatically print():ed

Displaying 20 results from an estimated 30000 matches similar to: "Startup process: Objects are automatically print():ed"

2011 Feb 15
0
RPostgreSQL [Expired connection at startup]
I have set up a postgresql database that I connect to each R startup in my .Rprofile file. ##############relevant lines from .Rprofile############################ library(RPostgreSQL) m <- PostgreSQL() con <- dbConnect(m, user="xxx", password="yyy", dbname="zzz") ####################################################################### in R con <Expired
2012 Nov 16
2
source file on startup question - why does an old version of a function show up? ggplot or R?
All, 1. I will try and make this clear and concise. Please let me know any information that would be helpful in figuring out this problem (I don't know the relevant information to post). I am on linux- see below for session information. 2. Problem: working directory: home an old version of a function is sourced into the R session and doesn't work working directory: Desktop the
2006 Aug 28
2
S4 classes and objects -- fixed structure? No...
Hello. Suppose you define a new S4-class, say > setClass("track", representation(x="numeric", y="numeric")) Don't worry if you have a deja vu, it's from the help page. Your new class is said to have a fixed structure: two slots, x, and y, and that should apply to all objects you construct as members of that class. > tr <- new( "track" )
2010 Jul 14
0
.Rprofile interfering with update.packages()
I know this is a double post, but the subject line was really misleading. Sorry again. This is the first time that I have tried to update packages with a tinkered around with .Rprofile. I start R with R --vanilla and it does not load my .Rprofile, but when I issue the command update.packages() R downloads the packages as expected, but then seems to load .Rprofile before compiling the packages
2010 Jul 14
2
qplot in ggplot2 not working any longer - (what did I do?)
This is the first time that I have tried to update packages with a tinkered around with .Rprofile. I start R with R --vanilla and it does not load my .Rprofile, but when I issue the command update.packages() R downloads the packages as expected, but then seems to load .Rprofile before compiling the packages sources. What am I doing wrong? kindest regards, Stephen Sefick see- Session info
2005 Jan 05
1
Using the Rprofile file to automatically plot data on Startup of R version 2.0.1.
Dear R Help Members, I have some R functions that plot semiconductor data. I would like to automate these plots for individuals in our group such that they don't have to know R. I have read the R help manuals and postings but have not found this problem. I am using R version 2.0.1 under a Windows 2000 operating system. The following is a simplified version of what I am tring to do: If
2009 May 20
1
install.packages now intentionally references .Rprofile?
A post on the Bioconductor mailing list https://stat.ethz.ch/pipermail/bioconductor/2009-May/027700.html suggests that install.packages now references .Rprofile (?), whereas in R-2-8 it did not. Is this intentional? The example is, in .Rprofile library(utils) install.packages("Biobase", repos="http://bioconductor.org/packages/2.4/bioc") then
2009 May 30
2
'options=utils::recover' not working in .Rprofile or within R
For years I have been using options(error = recover) either in .Rprofile or from within R for debugging purposes. The functionality of this appears to have changed and I can't recover it (no pun intended) using the ?options help page. How can I get the old functionality back, particularly from within .Rprofile? A specific line entry would be appreciated. An example, the help page, and
2011 Apr 16
2
(no subject)
I have just upgraded to R 2.13 and have library(ggplot2) in my .Rprofile (among other things). when i start R I get an error message. Has something in the start up scripts changed? Is there a better way to specify the library calls in .Rprofile? Thanks for all of the help in advance. Error: Loading required package: grid Loading required package: proto Error in rename(x, .base_to_ggplot) :
2017 Jan 04
0
cat(s, file): infinite loop of "invalid char string in output conversion" warnings with UTF-8 encoding
The below code snippet gives a single warning: Warning message: In cat(s, file = tempfile()) : invalid char string in output conversion when n <= 10001, whereas with n >= 10002 it appears to be generating the same warning in an infinite loop in the call to cat(). n <- 10002L r <- raw(length = n) r[] <- charToRaw(" ") r[length(r)] <- as.raw(0xa9) s <-
2017 May 08
2
[PATCH] / permitgwports / permitlisten
Hi Phillipp, developers; I likewise just submitted a patch for similar. It i buried under the thread named OpenSSH contract development / patch. At the request of the OpenSSH dev team, I submitted our patch in the mindrot Bugzilla https://bugzilla.mindrot.org/show_bug.cgi?id=2711 Your patch, I see is available there too https://bugzilla.mindrot.org/show_bug.cgi?id=2716 Anyhow, just drawing
2020 Sep 22
1
Dovecot postfix samba
On 22/09/2020 20:58, Rowland penny via samba wrote: > On 22/09/2020 20:28, Philip Offermans via samba wrote: >> Hi I am setting op an email server and want samba (kerberos) >> authentication. I am struggling for 1 week now. Is there maybe >> someone with experience who can help >> >> Thanks, >> Philip >> > Ever had a feeling of deja-vu ? > >
2000 Jun 29
2
Local Moran's I / Getis and Ord and Rousseauw Cluster Algorithms
Sorry for the repetition, unless I've got bad deja vu this questions been asked before but I couldn't turn up an answer on CRAN. Is there already any code in existence for local dependence measures such as Moran's I or Getis and Ord G? Also, S-Plus has a number of interstingly named Cluster Algorithms based on some previous stand-alone fortran algorithms (agnes, daisy etc.) which
2007 Oct 09
0
00LOCK error on site-library
I am experiencing an OOLOCK error when attempting to update packages to my site-library. I have an identical setup on my local Linux machine, but this problem on the remote Linux machine (PPC cluster) started about 3 weeks ago and is present whether I used R-devel or R-2.6.0 or R-2.5.1. Also, of course I manually remove the 00LOCK folder after each failed attempt. Below is my error output,
2013 May 25
0
segfault when using browser() in Rprofile.site
Hi. It seems that if I put a browser() in my Rprofile.site, I get a segfault. This happens on several machines, several versions of R. Here it the valgrind output when using revision 62797: ==31314== Memcheck, a memory error detector ==31314== Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al. ==31314== Using Valgrind-3.8.1 and LibVEX; rerun with -h for copyright info ==31314==
2003 Mar 05
1
order of package loading and printing messages to console on startup
Recently in R-devel, I've noticed that when I start up R, code in .Rprofile (in the working directory) gets sourced but any messages printed out by that code (e.g. by `cat') are printed *before* the introductory statement about R. For example, if I put the line library(KernSmooth) in my .Rprofile file, I get artemis:> R KernSmooth 2.22 installed Copyright M. P. Wand 1997 R :
2012 Oct 07
2
a merge() problem
I know it does not look very good - using the same column names to mean different things in different data frames, but here you go: --8<---------------cut here---------------start------------->8--- > x <- data.frame(a=c(1,2,3),b=c(4,5,6)) > y <- data.frame(b=c(1,2),a=c("a","b")) >
2015 Apr 14
1
httpuv not installing on fedora 19
Hi: I'm on fedora 19 ( I know. I'm behind : ) and I'm trying to install the httpuv library which depends on Rcpp. When I try to install it with dependencies = TRUE, I get the following error. ( I'm only showing the end of the install messages. Things go okay for a good while ). INSTALLATION MESSAGES #================================================================ make[1]:
2015 Apr 14
1
httpuv not installing on fedora 19
No, that's not it. The error is that you don't have the g++ binary installed. Undo that change and yum install gcc-c++. On Apr 14, 2015 8:31 AM, Mark Leeds <markleeds2 at gmail.com> wrote: > > Hi: I'm on fedora 19 ( I know. I'm behind : ) and I'm trying to install the > httpuv library > which depends on Rcpp. When I try to install it with dependencies =
2012 Oct 24
2
R CMD BATCH: set locale?
Hi I would like to change the locale when using R CMD BATCH. Usually, if I want to run it in english, for R in console/GUIs, I edit the .Rprofile file, adding: Sys.setlocale("LC_ALL","en_US.UTF8") Sys.setlocale("LC_MESSAGES","en_US.UTF8") But while this works for interactive R, it does not for R CMD BATCH. The problem is that running tests for a package,