Displaying 20 results from an estimated 200 matches similar to: "Correlation of coefficients?"
2003 Jul 11
2
Nonliner Rgression using Neural Nnetworks
Hi,
I am an old hand at chemistry but a complete beginner at statistics
including R computations.
My question is whether you can carry out nonlinear
multivariate regression analysis in R using neural networks, where the
output variable can range from -Inf to + Inf., unlike discriminant
analysis where the output is confined to one or zero. The library nnet
seems to work only in the latter
2003 Aug 19
3
On the Use of the nnet Library
Dear List,
I am trying to solve a problem by the neural network method(library:
nnet). The problem is to express Weight in terms of Age , Sex and Height
for twenty people. The data frame consists of 20 observations with four
variables: Sex, Age, Height and Weight. Sex is treated as a factor, Age
and Weight are variables normalized to unity, as usual. I wanted to
construct a neural network, and so
2008 May 13
9
A Very Simple Question
On 5/13/2008 10:27 AM, Yukihiro Ishii wrote:
> Hi Rusers!
>
> I am ashed of asking such a simple question.
>
> X<-matrix(rnorm(24), 4)
> X0<-apply(X,2,mean)
>
> What I want is a matrix which consists of colums such as X[,1]--X0[1].
>
> X-X0 doesn't work.
>
> Perhaps apply function?
scale(X, scale=FALSE)
?scale
> Thanks in advance.
>
>
2005 Aug 31
0
Cases as Variables in Principal Component Analysis?
Dear R users,
I have a data set of 25 cases with 150-160 explanatory variables(the
number of which depends on what I choose from 200 odd digitalized spectrum
strength numbers) and one dependent variable(a sensory test result). My
natural choice is to work on a principal component analysis using the
explanatory variables, thus enabling to characterize and describe the
data space, and make a
2017 Aug 18
2
Friendly Reminder: Would you please comment on my findings?
Am 18.08.2017 um 23:17 schrieb Jeremy Allison via samba:
> This might be hidden against Windows due to directory handle leases,
> which we don't yet support.
Are you saying that when I replace the Samba server by a Windows SMB2
share server, I should see better performance? I can perfectly test that
out and record a Wireshark trace for this if you like...
Layperson question: Would
2005 Feb 07
1
[matz@ruby-lang.org: Re: Performance of CGI::Cookie / SimpleDelegator fix]
Matz claims 1.8.3 might be released in April. If we''re lucky, maybe it
will have the Windows socket connection fix applied. (Although the patch
has been hanging around since last June... but maybe they just needed
some prodding. :) )
Then RubyTorrent will be much more usable on Windows.
----- Forwarded message from Yukihiro Matsumoto <matz@ruby-lang.org> -----
Date: Tue, 8 Feb
2006 Dec 11
10
Dom0 network problem
Hello.
I''ve just started with Xen and configuring Dom0.
My hardware is Core2Duo based Xeon server and I installed Debian etch
for amd64 architecture. The Xen related pachages installed are the
following.
linux-image-2.6.17-2-xen-amd64
linux-modules-2.6.17-2-xen-amd64
xen-hypervisor-3.0.3-1-amd64
xen-tools
xen-utils-3.0.3-1
xen-utils-common
My problem is that when xend is
2017 Aug 18
4
Friendly Reminder: Would you please comment on my findings?
Ah, ok, "directory handle leases"... Ouch, I see... :-(
In this case, I will first repeat my test scenario with a Windows SMB2
server and report back here.
Based on the results of this exercise, you can then advise whether you
still want to move this to smb-technical and raise this with Microsoft
folks (who still might have a simple workaround "fix" to improve their
SMB2
2007 Feb 02
0
Re: Dom0 and DomU can connect only to local network
Hello.
This is a follow by myself. I added the following lines (with +
marking) to /etc/network/interfaces and problem is solved.
On 2007/01/31, at 20:14, Toshinao Ishii wrote:
>
> auto lo
> iface lo inet loopback
>
+ auto eth0
+ iface eth0 inet manual
> # The primary network interface
> auto xenbr0
> iface xenbr0 inet static
> address 10.140.2.84
>
2017 Aug 18
0
Friendly Reminder: Would you please comment on my findings?
On Fri, Aug 18, 2017 at 11:35:04PM +0200, awl1 wrote:
> Am 18.08.2017 um 23:17 schrieb Jeremy Allison via samba:
> >This might be hidden against Windows due to directory handle
> >leases, which we don't yet support.
> Are you saying that when I replace the Samba server by a Windows
> SMB2 share server, I should see better performance? I can perfectly
> test that out and
2004 Feb 06
0
PractiCalc - A New CALCULATOR
PractiCalc - A brand new CALCULATOR for your PC.
More powerful than your usual calculator - more user-friendly than a spreadsheet.
-> PractiCalc provides both conventional and unique calculator operation and facilities.
-> PractiCalc processes your calculations, equations and expressions giving the result as you type.
-> PractiCalc's extensive built-in functions and user-defined
2011 Oct 19
0
Fukuoka Ruby Night
Ruby event on November 3, 2011 at MacKenzie Room, Stanford University.
Program will include, 1) keynote speeches by Yukihiro “Matz” Matsumoto
and Derek Collison, CTO, VMware Inc. and 2)Silicon Valley Ruby
Innovator Award Competition, a preliminary competition for the 2012
Fukuoka Ruby Award.
Please check the details from the following link and register for the
event.
2015 Jan 30
3
Another Fedora decision
On Fri, Jan 30, 2015 at 03:39:47PM -0600, Frank Cox wrote:
> On Fri, 30 Jan 2015 16:13:17 -0500
> Scott Robbins wrote:
>
> > You may have noticed how if Fedora, by some odd scheme, deems your password
> > unworthy, you have to click Done two times.
>
> Centos 7 does that as well.
Heh, I guess I've used good passwords in my installs then.
--
Scott Robbins
PGP
2015 Jan 30
4
Another Fedora decision
So, probably some of you, at least, follow Fedora, perhaps in part to see
what new desktop user oriented decision will make it into the next version
of RHEL/CentOS.
You may have noticed how if Fedora, by some odd scheme, deems your password
unworthy, you have to click Done two times.
So, the latest Ananconda takes this one step further. Passwords that the
system considers weak will no longer
2006 Mar 27
6
Fwd: Tricky block args
We in the JRuby project are working to get Rails to work successfully.
However, the array-indexed block parameter is not something currently
supported in JRuby:
x = {}
[1,2].each {|x[:foo]|}
This is not used extensively in the Rails code, but it''s used enough to
cause things to break in JRuby. We have been modifying the above to use a
temporary local variable, but obviously
2017 Aug 24
0
Windows SMB2 client doing excessive, inefficient SMB2 Find (and other) requests
Hello Jeremy, Andrew, All,
I can now indeed confirm that my test scenario runs MUCH faster when
executed against a Windows 10 SMB2 server than against Samba (test
scenario takes ~ 18 seconds using a Windows SMB2 server as opposed to ~
300 seconds when the server is Samba 4.6.5).
But, most interestingly, the reason for these performance gains is NOT -
as assumed by Jeremy - that the number of
2015 Apr 06
1
Member server - winbind unable to resolve users/groups
>
> Oh dear. Mr idealist has had his day spoilt again.
>
You already showed yourself unworthy of getting help from people here. In
fact, you are soooo smart that I don't even understand why you came here
in the first place...
Why don't you just go and consult yourself about your problems?
2006 Apr 27
1
Looking for an unequal variances equivalent of the Kruskal Wallis nonparametric one way ANOVA
Well fellow R users, I throw myself on your mercy. Help me, the unworthy,
satisfy my employer, the ungrateful. My feeble ramblings follow...
I've searched R-Help, the R Website and done a GOOGLE without success for a
one way ANOVA procedure to analyse data that are both non-normal in nature
and which exhibit unequal variances and unequal sample sizes across the 4
treatment levels. My
2001 Oct 13
1
small bug
The comments strings in vorbis are to be 8-bit clean.
info.c _v_writestring is not 8-bit clean. This leads to a malformed
comment header packet if the comment has an embedded Null:
0:0 hdr2 03 76 6F 72 62 69 73 20 00 00 00 58 69 70 68 6F .vorbis ...Xipho
16:10 70 68 6F 72 75 73 20 6C 69 62 56 6F 72 62 69 73 phorus l ibVorbis
32:20 20 49 20 32 30 30 31 30 38 31 33 01 00 00
2007 Jun 04
0
It alborn which herron
marked by the genius, the courage, the originality, and the written. Not only is Tradition silent, but even Fable herself does not attempt to tell the story of the origin of her population. Here stand In accordance with these principles, we observe that, while the most
tear her away, and then, maddened by her resistance and the sight of the sea and of the land by evaporation, falls again, under