Displaying 20 results from an estimated 400 matches similar to: "call R scripts from python"
2004 Feb 21
3
saving variables created by functions in the workspace
Hello ,
just a simple question from a beginner:
I write the function:
plotsinx <- function()
{
x<-seq(0,2*pi,0.01)
sinx<-sin(x)
plot(sinx)
}
I recall it:
plotsinx()
and the plot works properly.
but then in the workspace if I want to look at the
values of sinx the following error is displayed:
Error: Object "sinx" not found.
How to save the variables created by the function on
2004 Mar 08
2
getting the std errors in the lm function
Hello,
I have a simple question for you:
making:
mylm<-lm(y~x)
summary(mylm)
I get the following results:
******************************************************
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 16.54087 0.19952 82.91 <2e-16 ***
x[1:19] -2.32337 0.04251 -54.66 <2e-16 ***
******************************************************
2004 Feb 23
2
deleting elements from an array/object
Hello,
I created a simple histogram with:
myHist<-hist(myData)
the object myHist now has two arrays (among the others):
myHist$mids
myHist$counts
Since myHist$counts contains some "0", and I want to calculate the linear fit among myHist$mids and log(myHist$counts), I want remove the elements of both arrays where these "0" occurs.
which are the possible solutions to
2004 Mar 03
3
plot(x,y) with errors
Dear all,
I have 2 variables,
x<-c(1,2,3,4,5,6,7,8,9,10)
y<-c(1.3,2.5,4.6,5.3,5.9,6.7,7.4,8.5,9.4,10.4)
each point of the y variable has an error:
erry<-(0.2,0.3,0.2,0.1,0.4,0.2,0.3,0.4,0.3,0.2)
how to plot(x,y) with the errors segments?
Thank you,
Copex
---------------------------------
[[alternative HTML version deleted]]
2004 Feb 15
1
linear regression of data with standard deviation
Hello everyone,
I know that to calculate the linear regression between x and y I
have to use the function "lm".
But how to do if x and y have a standard deviation like in the
following example?
How to compute the chi square test in this case?
Thank you,
Fulvio.
example:
x +- dx
5 2
13 4
17 4
23 6
y +- dy
6.3 0.6
9.2 0.9
14 1
21 4
2004 Jan 15
4
invoking R scripts from a linux shell ?
Hello,
I have written perl programs that extract data from a
text file, process them, and create other text files,
which I'd like to apply some statistics too (for
example with R).
I'd like to do it all in once , with a single script.
I'm not familiar with R, I'd like to know if this task
could be accomplished by creating a linux shells that
launches the perl scripts and then
2004 Feb 28
1
Basic general statistical problem.
Hello everyone,
I'd like to have suggestions about a common basic statistical approach,
hope to be useful also for other R beginners.
When you first get some data (i.e length of river) you may want to look at its distribution.
Then you probably want to find which law follows this distribution,
and to test the goodness of the fit.
For doing this simple analysis I am writing some code
2012 Sep 03
2
boxplot - bclust
Hello everybody,
I have a problem with the commando of boxplot -bclust.
http://127.0.0.1:13155/library/e1071/html/boxplot.bclust.html
> data(iris)
> bc1 <- bclust(iris[,1:4], 3, base.centers=5)
Committee Member: 1(1) 2(1) 3(1) 4(1) 5(1) 6(1) 7(1) 8(1) 9(1) 10(1)
Computing Hierarchical Clustering
> boxplot(bc1)
Warnmeldungen:
1: In if (x$datamean) { :
Bedingung hat Länge > 1 und
2007 Apr 18
7
[Bridge] Passing vlan tagged packets through linux bridge
> Use an Intel pro/100 or pro/1000 driver..they are known to
> work with VLANs.
>
> I guess it's also possible that it's a problem in the
> bridging code, so try the latest kernel
> as well...
I compiled the latest 2.6.19 kernel and tested it with two
3COM 3c905c fast ethernet interfaces which work fine with
vlan 802.1q tagging, but when I have added the eth0 and eth1
2008 Jul 06
1
Patch for GRUB Legacy to chainload SYSLINUX from logical partitions
Inspired from a similar patch posted on grub-devel for Grub2 I immersed
myself into the code of Grub Legacy and came up with this absurdedly simple
patch to allow syslinux or other bootloaders residing in logical partition
to be chainloaded from GRUB Legacy (0.9x).
Hoping it to be of help, regards
Fulvio Scapin
-------------- next part --------------
A non-text attachment was scrubbed...
Name:
2007 Apr 18
2
[Bridge] large packet size doesn't work
Hi,
I have just configured a Linux box with kernel 2.6.16.7 and configured two
ethernet interfaces (with MTU 1500) in bridge mode. CONFIG_BRIDGE_NETFILTER
is enabled.
The problem is that ping -s 1500 192.168.0.2 doesn't work from 192.168.0.1
if the systems are separated by the bridge. Normal ping with smaller packet
size works ok.
What is wrong?
Best Regards
Fulvio Ricciardi
2008 Jun 20
3
Syslinux boot from a partition on sub stick with GPT label
I recently tried to install several distros on a usb stick, with the
peculiarity of creating in it a GPT label rather than the usual dos label.
Installed Grub2 using the parted bios_grub flag on a partition, I proceeded
to copy several distros on the remaining partitions.
Grub2 worked fine, chainloading syslinux on each of the partitions. Or
rather it worked all fine until I reached the fifth
1998 Oct 28
4
Anyone resolved "failed to lock SMB passwd file"?
Hi all.
I'm experiencing long connect delays due to password file locking
errors. For each connection samba logs the following errors:
do_pw_lock: failed to lock SMB passwd file.
mod_smbpwd_entry: unable to lock file
/usr/local/samba-1.9.18p10/private/smbpasswd
In the archives I found some other messages reporting the problem (on
May this year), but no solution. Did I
1998 Oct 29
1
Anyone resolved "failed to lock SMB passwd file"? (PR#10819)
Fulvio.Corno@polito.it wrote:
>
> I found the (possible) source of the error, in smbpass.c line 620+
....
>
> If no entry is found, the procedure returns without releasing the lock.
> I modified the last statement as:
>
> if (!found_entry) /* line 707 */
> {
> fclose(fp);
> pw_file_unlock(lockfd);
>
2002 Dec 23
4
calling R from python (fwd)
A question for a (experienced) user of the RPython package on
linux.
I'm trying to call R from python on a linux (Suse 7.3) box.
After installing R CMD INSTALL -c RSPython_0.5-2.tar.gz
I start python and do:
>>> import sys
>>> sys.path.append('/usr/local/lib/R/library/RSPython')
>>> sys.path.append('/usr/local/lib/R/library/RSPython/Python')
2005 Jan 17
1
problem installing RSPython
Hi,
I'm trying to install RSPython v0.5-4 on a debian machine (woody,
testing) but am having the following problem.
$R CMD INSTALL -c --library=/usr/lib/R/library RSPython_0.5-4.tar.gz 2>err
But then...
$python
>> import RS
Error in .PythonInit() : Error in Python call: values
Error in library("RSPython") : .First.lib failed for 'RSPython'
Traceback (most recent
2007 Aug 03
2
RSPython won't load in R 2.6.0 under Linux
I can compile RSPython without difficulty, been when I try to load it, I
get the error messages below. Also below are some cryptic warnings I get
on R boot (in case these are pertinent) and my sessionInfo().
Any help is appreciated. Thanks, Mark
Warning messages:
1: In .updateMethodsInTable(fdef, where, attach) :
Couldn't find methods table for "conditional", package
2005 Mar 18
2
RSPython
Hi,
where is the latest version of the RSPython library? Is it compatible
with the current stable release of R?
Thanks, Darren
1999 Jul 30
1
3D scatter plot
Hi,
I'd like to know if is it possible to make a 3D scatter plot (x y z) using R.
In the on-line help and in the help mailing list I found only ways in which
plot surfaces.
Thanks for the help
fulvio
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send
2001 Oct 31
1
shared libraries on FreeBSD 4.*
I've used R for a couple of years on FreeBSD with few problems. Recently,
a couple of the contributed packages seem to have difficulty finding
symbols in the shared libraries. Currently, I'm running R 1.3.1 on FreeBSD
4.4. I've tried setting LD_LIBRARY_PATH to /usr/local/lib
and some other things. The packages I've had trouble with are:
Matrix 0.3.15
RODBC 0.8.3
RSPython 0.3