Displaying 16 results from an estimated 16 matches for "granjeaud".
2023 Apr 03
0
Should help of estimate in t.test be corrected?
...ding on whether it was a one-sample test or a two-sample test"
should be rephrased to
"the estimated mean or difference in means depending on whether it was a one-sample test, two-sample test or two sample paired test"
Cheers
Petr
> -----Original Message-----
> From: Samuel Granjeaud IR/Inserm <samuel.granjeaud at inserm.fr>
> Sent: Monday, April 3, 2023 1:25 PM
> To: PIKAL Petr <petr.pikal at precheza.cz>; r-help at r-project.org
> Subject: Re: [R] Should help of estimate in t.test be corrected?
>
> Hi
>
> Thanks for your feedback. I didn'...
2020 Apr 07
4
Hard memory limit of 16GB under Windows?
Hi Tomas,
Many thanks for your answer.
Here is a copy of a fresh session under RStudio, and after a copy under
Rgui.
Strangely enough the result of memory.limit() is not the same. Without
your question I would not have looked to RGui, being used to work with
RStudio.
The value under RGui sounds to correspond to the total RAM of the
computer. It makes me noticing that the value is in MB.
2018 Feb 15
0
Identify does sort the locations
...complete lie.
Sorry about that :(
The simplest thing would be to correct the help page.
It would be possible to have identify() return the order, though for
backward compatibility that should not be the default, so would require
another argument to identify().
Paul
On 16/02/18 06:58, Samuel GRANJEAUD IR/INSERM wrote:
> Hi,
>
> Using identify function, I think I should get the index of the selected
> points in the order I clicked them. This is what I read in the help. But
> I feel they are ordered. Please let me know what I missed.
>
> In the following example, I clicked...
2018 Feb 15
3
Identify does sort the locations
Hi,
Using identify function, I think I should get the index of the selected
points in the order I clicked them. This is what I read in the help. But
I feel they are ordered. Please let me know what I missed.
In the following example, I clicked on the points labelled 7, 5 and 1,
but I get 1, 5, 7 as output.
> set.seed(0); x = rnorm(10); y = rnorm(10); plot(x,y); text(x, y,
> seq(x));
2020 Apr 07
0
Hard memory limit of 16GB under Windows?
...a and an aching desire for an answer does not
ensure that a reasonable answer can be extracted from a given body of data.
~ John Tukey
///////////////////////////////////////////////////////////////////////////////////////////
<https://www.inbo.be>
Op di 7 apr. 2020 om 16:16 schreef Samuel Granjeaud IR/Inserm <
samuel.granjeaud at inserm.fr>:
> Hi Tomas,
>
> Many thanks for your answer.
>
> Here is a copy of a fresh session under RStudio, and after a copy under
> Rgui.
> Strangely enough the result of memory.limit() is not the same. Without
> your question I woul...
2020 Apr 07
3
Hard memory limit of 16GB under Windows?
Hi,
I am not not sure whether this topic belongs to this mail list, but I
feel the subscribers here should be the right audience.
I noticed that the memory limit reported under Windows is 16 GB. I am
wondering how to increase it. I didn't found anything in Rprofile.site
nor .Rprofile. Is this limit hard coded at compilation?
Best,
Samuel
[[alternative HTML version deleted]]
2020 Apr 07
1
Hard memory limit of 16GB under Windows?
...t.com/v2/url?u=https-3A__www.inbo.be&d=DwICAg&c=eRAMFD45gAfqt84VtBcfhQ&r=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA&m=r6WLJ5dXWo2qb7mQwONaCxYeeWgKwycd3y89JoqY-oY&s=qqsNew3vl9ZvyUMRz_GQy_fAfoj9axzmbcsUUayPVAs&e= >
>
>
> Op di 7 apr. 2020 om 16:16 schreef Samuel Granjeaud IR/Inserm <
> samuel.granjeaud at inserm.fr>:
>
>> Hi Tomas,
>>
>> Many thanks for your answer.
>>
>> Here is a copy of a fresh session under RStudio, and after a copy under
>> Rgui.
>> Strangely enough the result of memory.limit() is not the s...
2018 Feb 15
2
Identify does sort the locations
Hi Paul,
Thanks for your answer. I am wondering if in the previous versions,
let's say 2.1x, the data were in the selection order... Let me know if
there a R fonction taht I can code. Do you think I should use locator
function and match points on my own?
Best,
Samuel
2018 May 15
1
bug in {graphics} identify()
R3.4.x, R3.5.0, Windows7 64 bit code
{graphics} identify()
is sorting results before returning the vector. As documented it should
return the raw sequence in the order selected ...
"If |pos| is |FALSE|, an integer vector containing the indices of the
identified points, in the order they were identified. "
X<-rnorm(100) # 100 random numbers
dim(X)<-c(50,2) #
2023 Apr 02
1
Should help of estimate in t.test be corrected?
Hi,
Not important, but IMHO the estimate component of the t.test holds an
estimate of mean of each group, never a difference. The doc says
"estimate??? the estimated mean or difference in means depending on
whether it was a one-sample test or a two-sample test."
> t.test(0:4)$estimate
mean of x
??????? 2
> t.test(0:4, 5:9)$estimate
mean of x mean of y
??????? 2???????? 7
2024 Sep 14
1
Dirichlet kernel requires r to be defined, which is not in the help
Code to reproduce
> kernel("dirichlet")
Error in kernel("dirichlet") : argument "r" is missing, with no default
The help says
r??? the kernel order for a Fejer kernel.
Thanks to update the help.
Best,
Samuel
2018 Feb 15
0
Identify does sort the locations
Hi
Sorry, I think this has always been the behaviour (and the documentation
has always been wrong).
Using locator() yourself could be a workaround (with a little more
effort required to determine the closest data point).
Paul
On 16/02/18 09:32, Samuel GRANJEAUD IR/INSERM wrote:
> Hi Paul,
>
> Thanks for your answer. I am wondering if in the previous versions,
> let's say 2.1x, the data were in the selection order... Let me know if
> there a R fonction taht I can code. Do you think I should use locator
> function and match points...
2020 Apr 07
0
Hard memory limit of 16GB under Windows?
Hi Samuel,
please also have a look at ?memory.limit. You can set this limit at R
startup. It is in megabytes. Maybe R Studio sets it at runtime.
Best
Tomas
On 4/7/20 3:57 PM, Samuel Granjeaud IR/Inserm wrote:
> Hi Tomas,
>
> Many thanks for your answer.
>
> Here is a copy of a fresh session under RStudio, and after a copy
> under Rgui.
> Strangely enough the result of memory.limit() is not the same. Without
> your question I would not have looked to RGui, being...
2019 Apr 26
0
R 3.6.0 is released
...es of identified points were returned in the order that the
points were selected. identify() now has a new argument order to
allow the return value to include the order in which points were
identified; the documentation has been updated. Reported by
Richard Rowe and Samuel Granjeaud.
* order(...., decreasing=c(TRUE, FALSE)) could fail in some cases.
Reported from StackOverflow via Karl Nordstr"om.
* User macros in Rd files now accept empty and multi-line
arguments.
* Changes in print.*(), thanks to Lionel Henry's patches in
PR#17398:...
2019 Apr 26
0
R 3.6.0 is released
...es of identified points were returned in the order that the
points were selected. identify() now has a new argument order to
allow the return value to include the order in which points were
identified; the documentation has been updated. Reported by
Richard Rowe and Samuel Granjeaud.
* order(...., decreasing=c(TRUE, FALSE)) could fail in some cases.
Reported from StackOverflow via Karl Nordstr"om.
* User macros in Rd files now accept empty and multi-line
arguments.
* Changes in print.*(), thanks to Lionel Henry's patches in
PR#17398:...
2019 Apr 26
0
R 3.6.0 is released
...es of identified points were returned in the order that the
points were selected. identify() now has a new argument order to
allow the return value to include the order in which points were
identified; the documentation has been updated. Reported by
Richard Rowe and Samuel Granjeaud.
* order(...., decreasing=c(TRUE, FALSE)) could fail in some cases.
Reported from StackOverflow via Karl Nordstr"om.
* User macros in Rd files now accept empty and multi-line
arguments.
* Changes in print.*(), thanks to Lionel Henry's patches in
PR#17398:...