Displaying 20 results from an estimated 130 matches similar to: "newbie's additional (probably to some extent OT) questions"
2003 Dec 18
3
symbolic and algebraic computation
I needed a symbolic and algebraic computation software. The best solution
I've found so far is maxima computer algebra system.
I was wondering if there is any R package that has similar features as
maxima's or somebody could point me to reference manuals on how to use R for
this purpose.
Thanks,
Angel
2003 Nov 17
2
Symbolic math?
Hi Folks,
I am using Windows 2000 and was wondering what (Open Source) software R
users use or might recommend for symbolic computations (aside from the ol'
noggin, e.g., Maxima, Mathomatic) .
Thanks,
Hank
Dr. Martin Henry H. Stevens, Assistant Professor
338 Pearson Hall
Botany Department
Miami University
Oxford, OH 45056
Office: (513) 529-4206
Lab: (513) 529-4262
FAX: (513) 529-4243
2007 Jul 18
1
Is there a facility in R similar to MatLab "syms" that allows using unevaluated numeric symbols in matrices?
Hi,
I'm trying to use R to get eigenvalues and eigenvectors of a matrix
whose elements are of the form (2 * lambda), -(lambda + mu), etc. I'd
like R to treat this matrix as a numeric matrix without treating lambda
and mu as variable names but rather as some sort of atomic quantities
(and hence give eigenvectors in terms of mu and/or lambda). MatLab and
Mathematica both do this,
2005 May 12
1
pls -- crossval vs plsr(..., CV=TRUE)
Hi,
Newbie question about the pls package.
Setup:
Mac OS 10.3.9
R: Aqua GUI 1.01, v 2.0.1
I want to get R^2 and Q^2 (LOO and Leave-10-Out) values for each
component for my model.
I was running into a few problems so I played with the example a little
and the results do not match up with the comments
in the help pages.
$ library(pls)
$ data(NIR)
$ testing.plsNOCV <- plsr(y ~ X, 6, data =
2004 Aug 25
3
integrate function
Is possible to integrate this diferential equation:
dN/dt = Nr(1-(N/K))
in R using the integrate() function?
Or any other diferential equation?
If yes, how?
If no, anybody know any software on linux that make this?
Inte
Ronaldo
--
O problema de ter os dois p??s bem firmes no ch??o ?? que voc?? n??o vai conseguir
tirar as cal??as.
--An??nimo
--
|> // | \\
2001 Apr 16
0
wine on Mandrake 7.2 (Newbie's Help:) (0/1)
Hi all,
I've tried to install wine (with windows partition on my mandrake7.2) and
i can use sol.exe (Howto :)) but when i've tried to install Half-life (3D
Games) form cdrom he don't :((
He tell me : Unhandied exeption 0xc0000005 at address 0x400801e7 do you
wish debug it
If i say yes, his respond is : err:seh:UnhandledExeptionFilter Couldn't
start debugger (debugger/winedbg
2001 Apr 16
0
wine on Mandrake 7.2 (Newbie's Help:) (1/1)
begin 644 wine.conf
M6T1R:79E($%="E!A=&@]+VUN="]F;&]P<'D*5'EP93UF;&]P<'D*3&%B96P]
M9FQO<'!Y"E-E<FEE;#TX-S8U-#,R,0H*6T1R:79E($-="E!A=&@]+VUN="]W
M:6Y?8PI4>7!E/6AD"DQA8F5L/4U3+41/4PI&:6QE<WES=&5M93UM<V1O<PH*
M6T1R:79E($1="E!A=&@]+VUN="]C9')O;0I4>7!E/6-D<F]M"DQA8F5L/4-$
2007 May 12
1
Newbie's question
Hi guys,
I've brand new to the R scene.
I have hundreds of csv files that has field 1 ,YYYY/MM/DD as index
How to generate a graph of distribution and calculate the standard deviation
of field2 for all of the files in a directory?
I'm wondering if R could do this.
Thanks a lot.
--
View this message in context: http://www.nabble.com/Newbie%27s-question-tf3730746.html#a10442845
Sent from
2008 Jul 17
1
Newbie's question about lm
Hello,
I would like to fit data with the following formula :
y=V*(1+alpha*(x-25))
where y and x are my data, V is a constant and alpha is the slope I'm
looking for.
How to translate this into R-language ?
At the moment, I only know : lm(y ~ x)
Sorry for such a basic question. I thought I could find the solution in a
post but I have to confess that, up to know, I'm not able to understand
2011 Nov 10
1
newbie's question : xyplot legend with a white background
Hello,
Sorry in advance for adding a silly question on this forum but I haven't
found the right keywords to find a solution to this basic problem.
I'm just looking a way to have a white background behind the legend to hide
the grid.
Thanks in advance.
The silly example for my silly question:
xyplot(1~1,
panel = function(x,y, ...) {
panel.xyplot(x,y)
2008 Jul 12
5
shapiro wilk normality test
Hi everybody,
somehow i dont get the shapiro wilk test for normality. i just can?t
find what the H0 is .
i tried :
shapiro.test(rnorm(5000))
Shapiro-Wilk normality test
data: rnorm(5000)
W = 0.9997, p-value = 0.6205
If normality is the H0, the test says it?s probably not normal, doesn
?t it ?
5000 is the biggest n allowed by the test...
are there any other test ? ( i know qqnorm
2004 Jul 06
4
Newbie's doubt on sip.conf
Hi,
I have some doubts on sip.conf.
1) Can I have two or more SIP phones acting as
extensions in one Asterisk box, and at the same time,
registered to a SIP proxy, say Free World Dialup? If
yes, how?
2) Why we need a section in the sip.conf for the
proxy, say, Free World Dialup's fwd.pulver.com? In the
case of 1), how to assign the value to section
[fwd.pulver.com], since there are more
2003 Jul 16
1
The two chisq.test p values differ when the contingency table is transposed! (PR#3486)
Full_Name: Tao Shi
Version: 1.7.0
OS: Windows XP Professional
Submission from: (NULL) (149.142.163.65)
> x
[,1] [,2]
[1,] 149 151
[2,] 1 8
> c2x<-chisq.test(x, simulate.p.value=T, B=100000)$p.value
> for(i in (1:20)){c2x<-c(c2x,chisq.test(x,
simulate.p.value=T,B=100000)$p.value)}
> c2tx<-chisq.test(t(x), simulate.p.value=T, B=100000)$p.value
> for(i in
2009 Jul 03
2
Confidence Limits for a Cross-Product Ratio
Data from Fisher's paper: Confidence Limits for a Cross-Product Ratio.
> y
col1 col2
[1,] 10 3
[2,] 2 15
fisher.test(y)
Fisher's Exact Test for Count Data
data: y
p-value = 0.0005367
alternative hypothesis: true odds ratio is not equal to 1
95 percent confidence interval:
2.753438 300.682787
sample estimates:
odds ratio
21.30533
The crude odds
2004 Aug 26
1
Why terms are dropping out of an lm() model
Hi all!
I'm fairly new to R and not too experienced with regression. Because
of one or both of those traits, I'm not seeing why some terms are being
dropped from my model when doing a regression using lm().
I am trying to do a regression on some experimental data d, which has
two numeric predictors, p1 and p2, and one numeric response, r. The aim
is to compare polynomial models in p1
2012 Feb 10
3
problem subsetting data frame with variable instead of constant
Hello,
I've encountered a very weird issue with the method subset(), or maybe this
is something I don't know about said method that when you're subsetting
based on the columns of a data frame you can only use constants (0.1, 2.3,
2.2) instead of variables?
Here's a look at my data frame called 'ea.cad.pwr':
*>ea.ca.pwr[1:5,]
MAF OR POWER
1 0.02 0.01 0.9999
2 0.02
2008 Oct 09
1
interpreting Shapiro-Wilks test result
Hi all,
I am newbie in using R software and also doing statistical test. I want to know if my data in in normal distribution. I have 2 groups of data and I did calculate Shapiro Wilks using R software. Here is the results:
Group 1: W = 0.9206, p-value = 0.01683
Group 2: W = 0.9626, p-value = 0.4694
I am not quite sure what default confidence level (CF) is used in calculating Shapiro Wilks.
2011 Feb 18
6
sort a 3 dimensional array across third dimension ?
I'm attempting to sort a 3 dimensional array that looks like this
> x
, , 1
[,1] [,2]
[1,] 9 9
[2,] 7 9
, , 2
[,1] [,2]
[1,] 6 5
[2,] 4 6
, , 3
[,1] [,2]
[1,] 2 1
[2,] 3 2
Such that it ends up like this ....
> y
, , 1
[,1] [,2]
[1,] 2 1
[2,] 3 2
, , 2
[,1] [,2]
[1,] 6 5
[2,] 4 6
, , 3
[,1] [,2]
2011 Apr 05
6
simple save question
Hi,
When I run the survfit function, I want to get the restricted mean
value and the standard error also. I found out using the "print"
function to do so, as shown below,
print(km.fit,print.rmean=TRUE)
Call: survfit(formula = Surv(diff, status) ~ 1, type = "kaplan-meier")
records n.max n.start events *rmean *se(rmean) median
200.000
1997 Oct 06
0
xterm "secure console" insecure
Dear Rogier,
some time ago I laid claim that xterm''s "secure console" feature was by no
means secure. You asked me to demonstrate this to you before you were to
forward my message to linux-security. Please find enclosed the program I use
as proof-of-concept.
-------------------
Dear readers,
please find enclosed a program illustrating a problem with xterm "secure