Displaying 20 results from an estimated 4000 matches similar to: "feedback on book recommendations"
2005 Sep 12
5
remedial stats education
In short:
I didn't take enough stats courses in college. Now I am working on scientific
research and I feel somewhat lost when it comes to designing the statistical
framework. I have looked through the books at:
http://www.r-project.org/doc/bib/R-books.html
I even tried to read [17] Julian J. Faraway. Linear Models with R. This book
is too advanced. It helped a little bit but I still
2007 Jul 03
2
link anchor targets?
Is there any way to pursuade markdown to create HTML link anchor
targets?
--
Make April 15 just another day, visit http://fairtax.org
2019 Apr 05
2
patch to improve matrix conformability error message
With this patch,
> A <- matrix(1, 2, 2)
> B <- matrix(2, 3, 2)
> A %*% B
Error in A %*% B :
non-conformable arguments of dimension (2, 2) and (3, 2)
>From 205b591d4d14b5ff667325fb233a6deb08314726 Mon Sep 17 00:00:00 2001
From: Joshua Nathaniel Pritikin <jpritikin at pobox.com>
Date: Fri, 5 Apr 2019 12:03:58 -0400
Subject: [PATCH] Improve non-conformable arguments error
2000 May 22
0
Duplicate share contents seen
Hello all,
I have posted this before and received no response so I am providing
more info this time.
I am on Linux kernel 2.2.5-15 and running Samba 2.0.6 as the Samba
server.
The client is a Windows NT 4.0 machine.
When browsing from the NT machine (as user administrator), any share I
access appears to contain the contents I put in my own share on the
server. This is causing a problem because
2018 May 31
0
mysterious rounding digits output
Hi Joshua,
Because there are no values in column ddd less than 1.
itemInfo[3,"ddd"]<-0.3645372
itemInfo
aaa bbb ccc ddd eee
skill 1.396 6.225 0.517 5.775 2.497
predict 1.326 5.230 0.462 5.116 -2.673
waiting 1.117 4.948 NA 0.365 NA
complex 1.237 4.170 0.220 4.713 5.642
novelty 1.054 4.005 0.442 4.260 2.076
creative 1.031 3.561 0.362 3.689
2013 Jun 06
1
dmvnorm
Summary:
+ I am writing an R extension that needs to call dmvnorm more than
10,000 times during a model fitting computation.
+ My extension uses openmp for parallel execution.
+ As of R 3.0, it is no longer permitted for threads to call the R
interpreter because there is a stack overflow check that always trips
because the thread's stack is different from what R is expecting.
+
2018 May 31
3
mysterious rounding digits output
R version 3.5.0 (2018-04-23) -- "Joy in Playing"
Platform: x86_64-pc-linux-gnu (64-bit)
options(digits=3)
itemInfo <- structure(list("aaa" = c(1.39633732316667, 1.32598263816667, 1.11658324066667, 1.23651072616667, 1.05368679983333, 1.03100737383333, 0.9630728395, 0.7483865045, 0.620086646166667, 0.5411017985, 0.496397607833333, 0.459528044666667, 0.427877047833333,
2018 May 31
2
mysterious rounding digits output
Well pointed out, Jim!
It is infortunate that the documentation for options(digits=...)
does not mention that these are *significant digits* and not
*decimal places* (which is what Joshua seems to want):
"?digits?: controls the number of digits to print when
printing numeric values."
On the face of it, printing the value "0,517" of 'ccc' looks
like printing 4
2009 Oct 04
2
is that possible to graph 4 dimention plot
Suppose there are 4 variables
d is a function of a , b and c
I want to know how a, b and c change will make d change
It will be straightforward to see it if we can graph the d surface
if d is only a function of a and b, I can use 'persp' to see the surface of
d. I can easily see at what values of a and b, d will get the maxium or
minium or multiple modes, etc
But for 4 dimention graph,
2005 Jan 20
1
Cauchy's theorem
In complex analysis, Cauchy's integral theorem states (loosely
speaking) that the path integral
of any entire differentiable function, around any closed curve, is zero.
I would like to see this numerically, using R (and indeed I would like
to use the
residue theorem as well).
Has anyone coded up path integration?
--
Robin Hankin
Uncertainty Analyst
Southampton Oceanography Centre
2018 May 31
0
mysterious rounding digits output
>>>>> Ted Harding
>>>>> on Thu, 31 May 2018 07:10:32 +0100 writes:
> Well pointed out, Jim!
> It is infortunate that the documentation for options(digits=...)
> does not mention that these are *significant digits*
> and not *decimal places* (which is what Joshua seems to want):
Since R 3.4.0 the help on ?options *does* say
2000 Dec 05
0
calculation of inertial difference with huygens theorem in ward clustering ?
Hello to the R people,
within ward clustering the distance calculated to decide the clustering
of 2 subsets (h1 and h2) is the variation of inertia :
d(h1,h2)=I(h1Uh2)-I(h1)-I(h2);
i've been said that a way to calculate faster this d(h1,h2) is using the
huygens theorem decomposing the inertia into "the inertia to the
centroid + the distance to an axe" (that's my version ...). My
2019 Apr 30
0
patch to improve matrix conformability error message
I think this is a good idea. Is there a reason why it got no interest?
Slippery slope?
Or maybe others were also just occupied trying to figure out how
Joshua's second message had timestamp earlier than his first message?
On Fri, Apr 05, 2019 at 12:05:36PM -0400, Joshua N Pritikin wrote:
>With this patch,
>
>> A <- matrix(1, 2, 2)
>> B <- matrix(2, 3, 2)
>> A
2009 Mar 23
3
How to set up a function for "Central Limit Theorem"
Hello guys, I am stuck here:
How do I make 1000 samples of n = 10 observations from an Exponential
distribution and then compute the mean for all those 1000 samples?
Basically I need to prove the Central Limit theorem, which states:
http://www.nabble.com/file/p22664113/d175f06cbf200bd52a2c27a2e56dc594.png
Where the Sn is sum of random variables, n we have from the question, mu is
mean and
2007 Apr 08
2
[LLVMdev] New automated decision procedure for path-sensitive analysis
Dear LLVMers,
This email is intended for those interested in path-sensitive analysis,
integer overflow analysis, static analysis, and (perhaps) loop invariant
computation.
Traditionally, such analyses have been considered too expensive to be
practical, and were mostly an academic curiosity. The core of the
problem is the lack of adequate automated decision procedures which
could quickly
2004 Dec 02
1
Re: A somewhat off the line question to a log normal distribution
Dear Siegfried,
I believe your boss is wrong saying that:
>He also tried to explain me that the monthly means
>(based on the daily measurements) must follow a
>log-normal distribution too then over the course of a
year.
every statistician know that increasing the sample
size the sample distribution of the mean is proxy to a
gaussian distribution (Central Limit Theorem)
independently
2009 Nov 18
1
Cochran's Theorem
I want to understand ANOVA better. But a few textbook that I have do
not describe Cochran's Theorem in details. Could somebody recommend a
book for me?
2003 Aug 25
2
Book recommendations: Multilevel & longitudinal analysis
Hi, does anyone out there have a recommendation for multilevel / random
effects and longitudinal analysis?
My dream book would be something that's both accessible to a
non-statistician but rigorous (because I seem to be slowly turning into a
statistician) and ideally would use R.
Peter
2010 Dec 07
0
R programing help-newton iterations for the square root
From: jypuppy36@hotmail.com
To: r-help-bounces@r-project.org
Subject: R programing help-newton iterations for the square root
Date: Tue, 7 Dec 2010 12:00:01 -0800
NEWTON ITERATIONS FOR THE SQUARE ROOT
Newton iterations to find the root of a real valued function f , i.e. a number x for which f (x) = 0, are of the form
Example. To find the square root of a positive number y we can use
2008 Jan 21
1
JavaScript book recommendations
No, not a question, but a few suggestions.
I take it that everyone serious about using Prototype & Co. already has
Christophe''s (Porteneuve) Prototype and Script.aculo.us book. Apart
from that, I''d like to point out two new, library-agnostic books:
Cameron Adams and several others
The Art & Science of JavaScript
Sitepoint 2008
http://www.sitepoint.com/books/jsdesign1/