Displaying 20 results from an estimated 1000 matches similar to: "Open .ssc .S ... files in R (PR#8690)"
2006 Mar 17
2
Is there a way to view S-PLUS script files in R
Dear List,
I have some S-PLUS script files (.ssc). Does there exist an R
function/command that can read such files? I simply want to view the
code and practice in R to help me learn the subject matter.
Any help would be greatly appreciated.
platform i386-pc-mingw32
arch i386
os mingw32
system i386, mingw32
status
major 2
minor 2.1
year 2005
month 12
day 20
svn
2006 Aug 25
4
How to iteratively extract elements out of a list
Dear List,
The following code produces a list, which is what I what:
set.seed(123)
tmpf <- function() {
x <- rpois(rpois(1,4),2)
}
n <- 3
m <- replicate(n,tmpf())
m
[[1]]
[1] 3 2 4
[[2]]
[1] 0 2 4 2 2 5 2
[[3]]
[1] 2 0 4 1 0
Now I need something that would to extract iteratively (or as many
times as
the size of 'n') the values that are greater than 2 in each component
of
2006 Jun 01
4
A coding question
Dear List:
I have the follow code:
y <- replicate(10,replicate(8,sum(rnorm(rpois(1,5)))))
Now I need to apply the following condition to _every_ randomly generated
Normal number in the code above:
x - max(0,x-15) + max(0,x-90), where x represents the individual Normal
numbers.
In other words, the said condition needs to be applied before
replicate(...(replicate(...(sum(...))) takes place.
2006 Mar 03
1
How to show the intermediate tick marks without the values in a different color
Is there a way to show also the intermediate tick marks without the
values?
Example:
plot(cars)
What would one do to show the tick marks in, say, gray color at the
increment of 1 without showing the actual values in-between the default
x
values: 5, 10, 15, 20, 25?
platform i386-pc-mingw32
arch i386
os mingw32
system i386, mingw32
status
major 2
minor 2.1
year 2005
month
2007 Apr 26
3
A coding question involving variable assignments in ifelse()
Dear List,
Below is a simple, standard loss model that takes into account the
terms of an insurance policy:
deductible <- 15
coverage.limit <- 75
insurance.threshold <- deductible + coverage.limit
tmpf <- function() {
loss <- rlnorm(rpois(1, 3), 2, 5)
sum(ifelse(loss > insurance.threshold, loss - coverage.limit,
pmin(loss, deductible)))
}
net <- replicate(1000000, tmpf())
2023 Mar 20
1
multi-site DNS confusion
Greetings,
I'm not sure what else to add. If you need more info please let me know.
Any input is greatly appreciated.
Eric
On Sat, Mar 4, 2023 at 2:58?PM Eric <rvwbug at gmail.com> wrote:
> Greetings,
>
> This is my first attempt at multi-site with unique subnets (actually
> first attempt at more than on DC).
>
> I had the existing "defaultFirstSite"
2005 Sep 16
1
Add lines to density plot
Dear List,
I am using R to learn bootstrapping concepts. Not to be oblivious to
the
contributed packages of boot and bootstrap, I have opted to do the
following as a way to hone my R skills.
One example I am trying to work through is the following:
x <- 1:20
Observed <- sample(x,20)
Resamples <- replicate(1000,sample(Observed,replace=TRUE))
Boot.Means <- apply(Resamples,2,mean)
2005 Oct 18
1
A two-part question about box-percentile plots, bpplot(): (1) yaxt="n" doesn't seem to work (2) how to display mean values
Dear List,
I have a two-part question related to bpplot(), a box-percentile plot
function in the Hmisc package.
Take the example given in the Help for bpplot(), for instance.
(1) How does one set but not draw the y-axis? What I did was,
bpplot(... , yaxt="n"), but that apparently does not work (though it
works for boxplot()).
(2) How does one display the mean value of each variable
2003 Jan 17
1
More info - S-Plus compatability
Dear all,
Thanks to those of you who have replied, the majority of the
comments pointed out that the error caused by scan may originate
from another function, and closer inspection of the output from
traceback() reveals that it is in fact the read.table function where
the error is originating from the full output of which I have included
below.
The error msg I recieve is
Error in
2007 Feb 28
2
sort of OT: bootstrap tutorial
There is now a tutorial on bootstrapping and other resampling
methods at:
http://www.burns-stat.com/pages/Tutor/bootstrap_resampling.html
Corrections and other suggestions are welcome.
The project started because a novice asked me about bootstrapping.
My response was, "How dare you bug me while I'm playing with my
cats, just google for it." My correspondent was not very impressed
2007 Feb 14
1
Any packages for conducting AHP( Analytic Hierarchy Process) data
Hi, R Lovers!
I have some survey data. I'd like to run R or R packages for processing data
inputted
from AHP(Analytic Hierarchy Process) survey.
Are there any R packages or subsititues for running data from AHP survey.
Thanks in advance,
--
Kum-Hoe Hwang, Ph.D.Phone : 82-31-250-3516 Email : phdhwang@gmail.com
[[alternative HTML version deleted]]
2007 Jun 08
1
Need Help with robustbase package: fitnorm2 and plotnorm2
This is my first post requesting help to this mailing list. I am new
to R. My apologies for any breach in posting etiquette. I am new to
this language and just learning my way around. I am attempting to run
some sample code and and am confused by the error message:
Loading required package: rrcov
Error in fitNorm2(fdat[, "FSC-H"], fdat[, "SSC-H"], scalefac = ScaleFactor) :
2007 Oct 12
2
Perfomance tuning for NIS client
Hi,
I have both linux and solaris NIS client against a Solaris NIS Server, but
my linux box are shamefully slow compare to solaris some sample:
on Solaris 5.8:
# ypwhich
transporter02.domain.com
# time id userid
uid=36923(userid) gid=36923(u_036923)
real 0.0
user 0.0
sys 0.0
on Linux:
[root at linux]# ypwhich
transporter02.domain.com
[root at amsdc2-n-s04taw root]# time
2008 Feb 09
1
bad variable names when printing a data frame containing a matrix (PR#10730)
library(glmpath)
data(heart.data)
# heart.data is a list, $y a vector, $x a matrix
data <- data.frame(x=I(heart.data$x), y = heart.data$y)
> data[1:2,]
x.1 x.2 x.3 x.4 x.5 x.6 x.7 x.8 x.9 y
1 160 12 5.73 23.11 1 49 25.3 97.2 52 1
2 144 0.01 4.41 28.61 0 55 28.87 2.06 63 1
> dimnames(heart.data$x)[[2]]
[1] "sbp"
2008 Jan 05
3
is(x, "parent") returns FALSE when class(x) is c("child", "parent") (PR#10549)
is() does not catch parent S3 classes:
> library(splines)
> temp <- bs(1:99, df=5)
> class(temp)
[1] "bs" "basis"
> is(temp, "basis")
[1] FALSE
In contrast, is() does catch parent S4 classes:
> library(copula)
> norm.cop <- ellipCopula("normal", param = c(0.5, 0.6, 0.7),
+ dim = 3, dispstr = "un")
2008 Apr 03
1
3.0.1pre3 - date/time discrepancy in the log
I'm using the very latest 'version 3.0.1pre3 protocol version 30', on
both ends, and have seen a date/time discrepancy in the log on the
receiver. The sending machine (machineA) is in US CDT while the receiver
is in US PDT. Both sender and receiver have their time set correctly.
a contiguous snippet from the log on the receiver : (note the first
three timestamps are correct:)
2005 Mar 26
2
Problems running Wine
I'am new to wine
Running wine in Fedora3 and running X10 ActiveHome PC interface , the
command is below and error message. What do I do now ?
#wine ActiveHm.exe
err:module:import_dll Library MSVCR71.dll (which is needed by
L"Z:\\home\\mickey\\.wine\\drive_c\\Program Files\\ActiveHome
Pro\\ahp.dll") not found
Thanks
Jim
2001 Jan 02
1
Transporting s-plus routines to R
I have used S-Plus for Windows for some time and have a large collection of personal programs. I have recently installed R-1.1.1 under Linux. I can read the .ssc files from S-Plus into emacs and save to R, but this is apt to be tedious. Any shortcuts to recommend? Will linux R read the _Data files from Windows S-Plus? Would Windows R serve as a useful intermediate transfer?
-------------- next
2009 Apr 27
1
Links on MainConfig wiki page not working
Hi all,
while looking through the wiki page MainConfig, I noticed a lot of
wannabe-links, for example:
<doc/wiki/SSL>
This looks like it should have been converted to a wiki link automatically,
but apparently isn't. Would be good to have this fixed?
Gr.
Matthijs
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type:
2020 Apr 26
1
Hierarchy separator recommendation?
On 26.4.2020. 12:17, Markus Winkler wrote:
>
>> Doesn't it, in the end, all come to translation from IMAP names
>> (user,folder) to OS filesystem names within dovecot (at some
>> benchmark tests expense) ? :-)
>
> No, as there's a difference between "namespace / hierarchy" (mailbox
> name) and "layout" separators (OS filesystem).
Hi