Displaying 11 results from an estimated 11 matches for "brazillions".
Did you mean:
bazillions
2018 Mar 01
2
Repeated use of dyn.load().
I am working with a function "foo" that explicitly dynamically loads a
shared object library or "DLL", doing something like dyn.load("bar.so").
This is a debugging exercise so I make changes to the underlying
Fortran code (yes, I acknowledge that I am a dinosaur) remake the DLL
"bar.so" and then run foo again. This is all *without* quitting and
2018 Mar 01
1
Repeated use of dyn.load().
Good question Rolf.
Rui, thanks for pointing out dyn.unload.
When I started using Rcpp a couple of years ago I got burned by stale .so
enough times that I adopted a policy of recompile-then-start new R session.
My workflow does not include Rolf's "brazillion" repeats, so the overhead
of this approach has not been too painful.
The documentation for dyn.unload (via ?dyn.unload)
2018 Mar 01
0
Repeated use of dyn.load().
Hello,
In such cases, with C code, I call dyn.unload before loading the
modified shared lib again.
I don't know if this changed recently, but it used to be needed or else
R wouldn't load the new lib. When I call dyn.unload followed by dyn.load
I never had problems.
(Or the other way around, call dyn.unload before modifying the C code.)
Hope this helps,
Rui Barradas
On 3/1/2018 8:52
2006 Apr 24
1
Just a couple questions on how I should go about
> I need a simple blog with categories and comments and an archive. I want a
> nice posting system, but don''t want it in HTML. Is there something I can add
> or make, kind of like BBCODE?
http://whytheluckystiff.net/ruby/redcloth/
http://wiki.rubyonrails.org/rails/pages/RedCloth
> I pretty much know what else I have to do, but there is one more thing. A
> client section.
2014 Oct 19
1
YP submission / cURL issue. (icecast 2.0.1 / gentoo)
hi
i installed icecast 2.01 on a suse system (hmm didn't have any imapct to
the desicion for suse) and compiled every myself.
the streaming server itself runs, i can steam and receive the stream but
i cant get the web-admin interface via host:8000/admin/. the following
error occurs in the web browser:
Could not parse XSLT file
XSLT: current tarball (cvs snapshot)
libxml2-2.6.9
2018 Mar 02
0
Repeated use of dyn.load().
I sent this enquiry to r-help and received several sympathetic replies,
none of which were definitive.
It was kindly suggested to me that I might get better mileage out of
r-devel, so I'm trying here. I hope that this is not inappropriate.
My original enquiry to r-help:
==========================================================================
I am working with a function "foo"
2006 Oct 23
1
Worm distribution :-)
You are talking about random point patterns, since the glow-worms
appear as ``stars'' (= points). See the package ``spatial'' (which
comes with R) and try simulating a pattern using Strauss().
Or install the package ``spatstat'' from CRAN --- in this package
there is a variety of ways to simulate ``regular'' random point
patterns --- rMaternI, rMaternII, rSSI,
2007 Aug 30
0
Linear modelling confusion.
...s are nested within schools;
the students are
nested within schools; students are *not* nested within classes. The
fixed effect
is ``time'', with 6 levels. There are 1428 observations.
The ``design'' (the data are from an observational study) is vastly
imbalanced; there
are brazillions of empty cells.
I tried fitting two models:
(1) y ~ time + school + class%in%school + student%in%school
(2) y ~ time + cls.in.scl + std.in.scl
where I formed the factors ``cls.in.scl'' and ``std.in.scl'' by using
the interaction()
function:
cls.in.scl <- interaction(cla...
2006 Nov 16
1
Confusion about Dll Overriding
the winecfg confused me about DLL overriding. In the 'libraries' tab,
if i specified a Dll file name and click 'Add', how does Wine know
where to load the native file when need? does it mean i also have to
copy the native file into the "c:\windows\system[32]" directory? if
so, why i have to bother with the winecfg, why not directlly copy
files into the
2012 Jun 08
2
Percent of a given subset
How would I find the Percent of FuelTypeNum within the Band given
AvailableMW?
example:
type 1 is 1% of PB0
type 2 is 54% of PB0
type 4 is 4% of PB0
type 5 is 42% of PB0
Note: the Bands and fuel types are not always constant.
Data:
FuelTypeNum Bands AvailableMW AvailableMWNewFormat
1 PB0 185319 185.319
2 PB0 18352000 18352
4 PB0 1338785 1338.785
5 PB0 14189756 14189.756
2 PB1
2009 Apr 01
4
Recode of text variables
Hi all
I am trying to do a simple recode which I am stumbling on. I figure
there must be any easy way but haven't come across it.
Given data of A","B","C","D","E","A" it would be nice to recode this
into say three categories ie A and B becomes "Treat1", C becomes "Treat
2" and E becomes "Treat 3".
I tried