Displaying 20 results from an estimated 36302 matches for "within".
2007 Jun 13
0
Reported invalid memory references
..., readline).
Are these reported errors actually problems? If so, do they indicate
problems in R or some other component (e.g., ld.so). Put more
practically, should I file one or more bugs, and if so, against what?
Thanks.
Ross Boylan
==30551== Invalid read of size 4
==30551== at 0x4016503: (within /lib/ld-2.5.so)
==30551== by 0x4006009: (within /lib/ld-2.5.so)
==30551== by 0x40084F5: (within /lib/ld-2.5.so)
==30551== by 0x40121D4: (within /lib/ld-2.5.so)
==30551== by 0x400E255: (within /lib/ld-2.5.so)
==30551== by 0x4011C5D: (within /lib/ld-2.5.so)
==30551== by 0x44142E1: (...
2006 May 29
5
Can't Run "Within A Deep Forest"
i hope you can help me. The game's site is
http://withinadeepforest.ni2.se/index.php?
here's the terminal output from the install (from install binary) and
the run.
the install:
$ wine install_wadf_11.exe
fixme:advapi:CheckTokenMembership ((nil) 0x7ff18088 0x7fc8fe1c) stub!
fixme:sfc:SfcIsFileProtected ((nil), L"C:\\Program Files\\Within a Dee...
2007 Jul 13
0
KWD crashes when opening OOo
...39;d, by OpenWorks LLP.
==31534== Using valgrind-3.2.1-Debian, a dynamic binary instrumentation framework.
==31534== Copyright (C) 2000-2006, and GNU GPL'd, by Julian Seward et al.
==31534== For more details, rerun with: -v
==31534==
==31534== Invalid read of size 4
==31534== at 0x4014759: (within /lib/ld-2.5.so)
==31534== by 0x4005B69: (within /lib/ld-2.5.so)
==31534== by 0x4007995: (within /lib/ld-2.5.so)
==31534== by 0x4010D94: (within /lib/ld-2.5.so)
==31534== by 0x400CFA5: (within /lib/ld-2.5.so)
==31534== by 0x40108ED: (within /lib/ld-2.5.so)
==31534== by 0x450C0A1: (...
2009 Sep 09
1
Stats help with calculating between and within subject variance and confidence intervals
Hello.
I'm trying to find a way in R to calculate between and within subject
variances and confidence intervals for some analytical method
development data.
I've found a reference to a method in Burdick, R. K. & Graybill, F. A.
1992, Confidence Intervals on variance components, CRC Press. This
example is for Balanced Data confidence interval calculatio...
2004 Feb 04
0
RE: RE: winbindd panic daemon dies
...r bbcdcp002$@HQ.CORE.BBC.CO.UK (Cannot find KDC for requested realm)
krb5_get_credentials failed for bbcdcp002$@HQ.CORE.BBC.CO.UK (Cannot find KDC for requested realm)
ads_connect for domain HQ failed: Cannot find KDC for requested realm
==25463== Invalid write of size 4
==25463== at 0x8110A0D: (within /usr/sbin/winbindd)
==25463== by 0x81110F6: (within /usr/sbin/winbindd)
==25463== by 0x81117D7: get_dc_list (in /usr/sbin/winbindd)
==25463== by 0x81114DF: get_sorted_dc_list (in /usr/sbin/winbindd)
==25463== Address 0x41D28E50 is 0 bytes after a block of size 192 alloc'd
==25463==...
2010 May 17
0
plm(..., model="within", effect="twoways") is very slow on unablanaced data (was: Re: Regressions with fixed-effect in R)
Hello Giovanni
I made a minor modification to your function, which now allows to
compute the within R-sq in Twoways Within models (see below).
However I ran into an issue that I have already encountered before:
whenever I try to fit Twoways Within models on my unbalanced data, the
process is strangely slow and I usually terminate it either after
~15min or when my CPU hits 100C. This is similar t...
2009 Feb 20
2
segfault on amd64 with ffmpeg
...am #0.0 -> #0.0
Stream #0.1 -> #0.1
Press [q] to stop encoding
==12051== Invalid write of size 4
==12051== at 0x64D1485: PickIntra (in /usr/local/lib/libtheora.so.0.3.4)
==12051== by 0x64DA9B2: theora_encode_YUVin (in
/usr/local/lib/libtheora.so.0.3.4)
==12051== by 0x762598: (within /home/pub/apps/ffmpeg_dev/ffmpeg_svn/ffmpeg)
==12051== by 0x4E2DB8: avcodec_encode_video (in
/home/pub/apps/ffmpeg_dev/ffmpeg_svn/ffmpeg)
==12051== by 0x4256D2: (within /home/pub/apps/ffmpeg_dev/ffmpeg_svn/ffmpeg)
==12051== by 0x425F61: (within /home/pub/apps/ffmpeg_dev/ffmpeg_svn/ffmpe...
2012 Mar 21
2
Why is there no within.environment function?
If I want to assign some variables into an environment, it seems
natural to do something like
e <- new.env()
within(e,
{
x <- 1:5
y <- runif(5)
}
)
This throws an error, since within.environment doesn't exist.? I
realise I can work around it using
as.environment(within(as.list(e),
{
x <- 1:5
y <- runif(5)
}
))
Just wondering why I can't use within di...
2010 Jan 07
1
question on 'within' and 'parse' commands
Hi,
Why can't I pass an expression to `within' by way of textual input to
the 'parse' function?
e.g.,
> x <- data.frame(a=1:5,b=LETTERS[1:5])
> x
a b
1 1 A
2 2 B
3 3 C
4 4 D
5 5 E
> within(x, parse(text="a<-a*10; b<-2:6"))
a b
1 1 A
2 2 B
3 3 C
4 4 D
5 5 E
> within(x, parse(text="a<...
2017 Jun 26
2
Odd behaviour in within.list() when deleting 2+ variables
The behaviour of within() with list input changes if you delete 2 or more variables, compared to deleting one:
l <- list(x=1, y=2, z=3)
within(l,
{
rm(z)
})
#$x
#[1] 1
#
#$y
#[1] 2
within(l, {
rm(y)
rm(z)
})
#$x
#[1] 1
#
#$y
#NULL
#
#$z
#NULL
When 2 or more variables are deleted, the list entries are...
2017 Jun 26
2
Odd behaviour in within.list() when deleting 2+ variables
...;> on Mon, 26 Jun 2017 13:43:28 +0200 writes:
> This seems to be due to changes made by Martin Maechler in
> 2008. Presumably this fixed something, but it escapes my
> memory.
Yes: The change set (svn -c46441) also contains the following NEWS entry
BUG FIXES
o within(<dataframe>, { ... }) now also works when '...' removes
more than one column.
> However, it seems to have broken the equivalence
> between within.list and within.data.frame, so now
> within.list <- within.data.frame
> does not suffice.
There...
2009 Sep 02
4
within: order of newly added variables
Dear R community,
I am using function 'within' in R.2.9.1 to add variables to an existing data.frame. This works wonderful, except for one minor point: The new variables are added to the data in reverse order.
For example:
x <- data.frame(a = 1:3, b = 4:6)
y <- within(x, {
c = a^2
d = b^2
e = c+d
}
)
gives
a b...
2015 Apr 01
4
evaluation in transform versus within
On 01/04/2015 1:35 PM, Gabriel Becker wrote:
> Joris,
>
>
> The second argument to evalq is envir, so that line says, roughly, "call
> environment() to generate me a new environment within the environment
> defined by data".
I think that's not quite right. environment() returns the current
environment, it doesn't create a new one. It is evalq() that created a
new environment from data, and environment() just returns it.
Here's what happens. I've put the...
2008 May 22
2
Story / Redirection to static html within public
With a rails application I''m trying to access the public/ folder from
within a rspec story.
I have a controller which redirects to:
/public/static_html_page.html
I have a story written using webat.
This story uses the above controller and it expects the redirection.
This story always fails as within the story it cannot follow the
redirection (Always gives a 500 error)....
2004 Sep 16
3
Creating conference calls from within Astman.
Dear All,
I have a requirement to 'originate' a number of calls to various external
users from within a conference room, so that the end users does not pay for
the call.
I know that within Astman I can define an extension and then originate the
call from that extension. Can I define a conference room (how would I
configure that on astman? What channel would it use?) and then generate a
number of c...
2015 Apr 01
1
evaluation in transform versus within
On 01/04/2015 2:33 PM, Joris Meys wrote:
> Thank you for the insights. I understood as much from the code, but I
> can't really see how this can cause a problem when using with() or
> within() within a package or a function. The environments behave like
> I would expect, as does the evaluation of the arguments. The second
> argument is supposed to be an expression, so I would expect that
> expression to be evaluated in the data frame first.
I don't know the context wit...
2012 Dec 01
3
screen if a value is within range
Dear all,
could you please give me some pointers on how I could make R screen for a value if it falls within a certain range?
I looked at the subset function, but is not doing it, perhaps because I only have 1 value to screen?
aptreciate the input
ex:
a <-16.5
I would like to screen to see if a is within the range of 15 to 20, (which it is:-)), and I would like the code to return a value of 1 if a...
2024 Dec 17
1
R_CheckUserInterrupt() can be a performance bottleneck within GUIs
tl;dr: R_CheckUserInterrupt() can be a performance bottleneck
within GUIs. This also affects functions in the 'stats'
package, which could be improved by changing the position
of calls to R_CheckUserInterrupt().
Dear all,
Recently I was puzzled because some code in a package under development,
which consisted almost entirely of a .Call()...
2010 Jul 08
2
Loading .Rdata within an R function
Colleagues:
I am having trouble loading data from within .Rdata file
within the environment of a function. That is,
the following always loads to the global environment:
f1 <- function() {
load("mydata.Rdata")
# compute with objects from mydata.Rdata.
}
I wish to load mydata.Rdata only within the...
2015 Apr 01
2
evaluation in transform versus within
Dear list members,
I'm a bit confused about the evaluation of expressions using with() or
within() versus subset() and transform(). I always teach my students to use
with() and within() because of the warning mentioned in the helppages of
subset() and transform(). Both functions use nonstandard evaluation and are
to be used only interactively.
I've never seen that warning on the help page...