Displaying 12 results from an estimated 12 matches for "hoep".
Did you mean:
hiep
2005 Oct 31
1
policies primer posted
After trying to get all the policy stuff nailed down I figured I'd save
others the trouble, so I wrote up a primer and posted it on my site at
http://www.ehsco.com/reading/20051031.html
Hoepfully that will save others some trouble
--
Eric A. Hall http://www.ehsco.com/
Internet Core Protocols http://www.oreilly.com/catalog/coreprot/
2023 Jan 09
1
return value of {....}
...v <- u + z # expr5's value is accessible
10 * v
}
# the call also creates input
f(input <- 1)
#> [1] 82.83185
.Last.value / 10
#> [1] 0.1
.Last.value - input*2
#> [1] -1
.Last.value / pi
#> [1] 0.3183099
.Last.value / 2
#> [1] 0.5
.Last.value == input
#> [1] TRUE
Hoep this helps,
Rui Barradas
2024 Apr 08
2
Exceptional slowness with read.csv
? Sun, 7 Apr 2024 23:47:52 -0600
Dave Dixon <ddixon at swcp.com> ?????:
> > second_records <- read.csv(file_name, skip = 2459465, nrows = 5)
It may or may not be important that read.csv defaults to header =
TRUE. Having skipped 2459465 lines, it may attempt to parse the next
one as a header, so the second call read.csv() should probably include
header = FALSE.
Bert's advice
2005 Mar 04
0
[Fwd: Re: Fwd: FreeBSD hiding security stuff]
The mailing list detained my email because I posted from the wrong
address... hoepfully it will get through this time.
-------- Original Message --------
Subject: Re: Fwd: FreeBSD hiding security stuff
Date: Fri, 04 Mar 2005 05:35:32 -0800
From: Colin Percival <cperciva@freebsd.org>
To: Devon H. O'Dell <dodell@sitetronics.com>
CC: mike@sentex.net, freebsd-securi...
2008 Apr 28
2
Problems with Rscript executable.
Good Morning,
I have recently built R version 2.7.0 on a CentOS release 4.6, 64-bit
system using the following command:
./configure --prefix=/usr/local/r-2.7.0
Everything built fine and works properly except for Rscript which is
looking for files in the original build directory instead of the
specified install directory. Did I forget to add a flag or is this a bug?
TIA,
Gregg.
2009 Aug 10
2
cannot upgrade to R 2.9.1 in Ubuntu
R-SIG-Debian help,
At the moment the R version installed on my machine is 2.8.1. (Ubuntu 9.04)
I wish to upgrade to R 2.9.1.
I did:
$ sudo apt-get upgrade
but R is not upgraded although the "sources.list" file is updated with:
deb http://cran.ii.uib.no/bin/linux/ubuntu jaunty/
When I run from the terminal I still get:
$ R
R version 2.8.1 (2008-12-22)
Copyright (C) 2008 The R
2000 Nov 06
2
Mac project files in mainstream
Hmm... The Mac makefiles are beginning to get really out of date in the
mainstream ogg and vorbis trees. As a mtter of fact, there aren't any
Mac makefiles in the ogg tree. I can make an attempt to update them,
but I'm not very good at library work (exported symbols confuse the hell
out of me), or if Chris is listening, I'm making a request for an
update... please?
Thanks,
2007 Sep 12
2
Font problem (PR#9906)
Full_Name: M. Mu?oz M?rquez
Version: 2.3.1
OS: Ubuntu
Submission from: (NULL) (150.214.231.66)
Here is the reply to the edit command using gnome
> edit(data.frame())
Erro en dataentry(datalist, modes) : invalid device
Adem?s: Warning message:
unable to create fontset -*-fixed-medium-r-normal--13-*-*-*-*-*-*-*
> Sys.getlocale()
[1]
2007 Mar 13
2
Support for noarch packages in /usr/share/R/library
As originally raised here:
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=231220
It has been proposed that R should support noarch packages
in /usr/share/R/library in addition to architecture specific packages
in /usr/lib/R/library or /usr/lib64/R/library.
For example, the mAr addon doesn't have any architecture specific bits.
Strictly speaking, the Filesystem Hierarchy Standard says
2023 Nov 30
1
back tick names with predict function
?s 17:38 de 30/11/2023, Robert Baer escreveu:
> I am having trouble using back ticks with the R extractor function
> 'predict' and an lm() model.? I'm trying too construct some nice vectors
> that can be used for plotting the two types of regression intervals.? I
> think it works with normal column heading names but it fails when I have
> "special"
2023 Jan 09
5
return value of {....}
Dear members,
I have the following code:
> TB <- {x <- 3;y <- 5}
> TB
[1] 5
It is consistent with the documentation: For {, the result of the last expression evaluated. This has the visibility of the last evaluation.
But both x AND y are created, but the "return value" is y. How can this be advantageous for solving practical problems?
2010 Dec 15
5
Solution to differential equation
Hello,
I am trying to find the analytical solution to this differential equation
dR/dt = k1*(R^k2)*(1-(R/Rmax)); R(0) = Ro
k1 and k2 are parameters that need to fitted, while Ro and Rmax are the
baseline and max value (which can be fitted or fixed). The response (R)
increases
initially at an exponential rate governed by the rate constants k1 and k2.
Response has a S-shaped curve as a function