Displaying 20 results from an estimated 3000 matches similar to: "How to convert an existing package?"
2011 Jan 21
3
How to look into the asterisked function?
Hi friends, there is methods() function to see the all available methods for
a particular function, for example:
> head(methods("print"))
[1] "print.acf" "print.anova" "print.aov" "print.aovlist"
"print.ar" "print.Arima"
In this list, there are some functions which are asterisked like
print.acf().
2006 Dec 13
2
caching frequently used values
Hi,
I am trying to find an elegant way to compute and store some
frequently used matrices "on demand". The Matrix package already uses
something like this for storing decompositions, but I don't know how
to do it.
The actual context is the following:
A list has information about a basis of a B-spline space (nodes,
order) and gridpoints at which the basis functions would be
2004 May 25
4
Object "silhouette.default" not found. But I knew that it is there.
Hi!
>library(cluster)
In this lib a function called silhoutte.default is defined
than on the R prompt it type
>silhouette.default
Error: Object "silhouette.default" not found
R1.9.0
The same error are at R1.8.1
And I knew that a function silhoutte.default are present.
But the same piece of code works in R1.6.2
???
Eryk
Dipl. bio-chem. Eryk Witold Wolski @
2011 Mar 14
0
selection of hinge function with restrictions, machine learning, earth package,
On 2011-01-27 14:22, Rasti Matus wrote:
> I have a few questions regarding machine learning packages in R,
> e.g. earth package ...
>
> 1) How could I force the algorithm to generate knots only with
> values < 90 for variable doy?
Not possible in the current implementation. In principle it
would be possible to extend earth so the user-defined "allowed"
function
2024 Jan 19
2
NUT and Eaton UPS produce a lot of error messages
On 19.01.24 17:02, Stefan Schumacher via Nut-upsuser wrote:
>Jan 19 05:50:13 mars nut-monitor[849]: Signal 15: exiting
>Jan 19 05:50:17 mars nut-server[1303]: Signal 15: exiting
this looks like someone repeatedly killed nut server. This not a problem of
UPS.
--
Matus UHLAR - fantomas, uhlar at fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this
2011 Jun 06
2
Gluster 3.2.0 and ucarp not working
Hello everybody.
I have a problem setting up gluster failover funcionality. Based on
manual i setup ucarp which is working well ( tested with ping/ssh etc
)
But when i use virtual address for gluster volume mount and i turn off
one of nodes machine/gluster will freeze until node is back online.
My virtual ip is 3.200 and machine real ip is 3.233 and 3.5. In
gluster log i can see:
[2011-06-06
2009 Aug 21
4
Where to put source code?
I'm trying to move from Matlab to R, and I'm stuck even getting
started. This sounds to me like the dumbest question in the world
but... how does one put R source code in files? Over the last three
days I've gone front to back through the Introduction to R and the R
Language Definition, and while I'm excited that the language is so
Lispish, none of what I read described how to
2013 Jun 03
2
nut client config?
Hello,
could nut clients have its settings file?
It would be easier to configure UPSes for upsc, upsmon and nut-monitor with
client config file.
Maybe ups.conf ?
--
Matus UHLAR - fantomas, uhlar at fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
My mind is like a steel
2024 Jan 19
2
NUT and Eaton UPS produce a lot of error messages
I still have two questions:
1) How do I make the nut-server and nut-monitor find the right pid
files? They are there but it seems they can't be opened. Permissions
are nut/nut.
2) What do these error messages mean?
Jan 19 16:14:52 mars nut-monitor[3781]: Init SSL without certificate database
Jan 19 16:14:52 mars nut-monitor[3781]: Login on UPS [Eaton at localhost]
failed - got [ERR
2016 Mar 01
2
Insert CallInst within a function passing same parameters of the calling function.
Hi,
supposing I have a function “foo” like the following:
int foo(int a, int b) {
...
...
}
I want to insert int the LLVM IR a call instructions to a function “bar” that requires the same parameters of foo.
So my function foo will become:
int foo(int a, int b) {
bar(a,b);
…
...
}
I am using the following code:
bool ThreadSanitizer::runOnFunction(Function &F) {
2008 Oct 14
2
getAnywhere
Hi List,
I am trying to look up an object using getAnywhere, where the object I
am looking for is given by the _value_ of the variable I am looking
for. Since getAnywhere calls substitue on its argument it is looking
for an object with the name of the argument not its value. Is there a
way to work around this, or do I have to make my own getAnywhere
without the substitute?
This is an example to
2005 Feb 11
3
getAnywhere and functions starting with "." (PR#7684)
Full_Name: Mark Bravington
Version: 2.0.1
OS: Windows XP
Submission from: (NULL) (140.79.22.104)
'getAnywhere' crashes when its argument starts with a period:
> getAnywhere( '.onLoad')
Error in exists(x, envir, mode, inherits) :
invalid first argument
One fix might be to replace the line
if ( !is.null(f <- getS3method(gen, cl, TRUE))) {
with
if ( nchar( gen)
2008 Dec 19
1
[LLVMdev] strange behaviour after extracting optimization pass code
Hi,
I am expieriencing strange behaviour of llvm's optimization passes and I
don't understand what I am doing wrong.
Basically all I've done is extracting code for optimization of a
llvm-function in a llvm-module and put it into a separate function for
better readability. The original code looks like follows (and works as
expected):
-----------------------------
std::string
2017 Jun 27
3
Testing utility for building and updating CFG
Hi folks,
I’m working on adding an API for incremental updates to DominatorTree and I
noticed that there isn’t a simple way to quickly build and update CFG (just
for testing) -- one has to either build CFG programmatically, or write IR
by hand and manually map pointers to basic blocks. The downside is that it
tends to be pretty verbose and not easy to update (e.g. adding a new edge
often involves
2024 Mar 20
1
UNSUBSCRIBE
Marcus,
I did try to do that several days ago, got the email, confirmed my desire
to unsubscribe, and wad told that my "request would soon be acted upon"
Yet I continue to get these messages.
I'd love to have just a way to receive only message chains where I either
started the question or am contributing.
I don't need to see ALL the comms on the list, however this old-school
2004 May 13
5
code for functions in base package
Is there any way that I can see the step by step code for functions in
the base package? For instance the dexp function. I am a student
working on writing my own function for something that is similar to
this dexp function and I would like to see the step by step code.
Brittany Laine
GTA WVU Statistics Department
331 Hodges
2010 Aug 19
3
[LLVMdev] using external functions from llvm
The blog post I linked to implied that adding a symbol in the form
lle_X_FUNCTIONNAME would allow you to call a function called FUNCTIONNAME.
Is this not the case?
On Thu, Aug 19, 2010 at 6:46 PM, <o.j.sivart at gmail.com> wrote:
> You are adding the symbol as "lle_X_create_number_object" yet your error
> message implies you have tried to lookup and use
2003 Sep 24
1
getAnywhere (PR#4275)
'getAnywhere' is not reporting methods when there are periods in the class name or the generic name
(in R-devel).
> getAnywhere( 'predict.loess')
A single object matching 'predict.loess' was found
It was found in the following places
registered S3 method for predict from namespace modreg
namespace:modreg
with value
<<...>>
> getAnywhere(
2003 Jul 11
1
getAnyhwhere behavior
I would have expected the function getAnywhere to have behaved
differently in the following:
> search()
[1] ".GlobalEnv" "file:C:/R/Rdata/miya/.Rdata"
[3] "package:boot" "package:methods"
[5] "package:ctest" "package:mva"
[7] "package:modreg"
2011 Sep 15
1
Gluster 3.2 configurations + translators
Hello,
i'm little confused about gluster configuration interface. I did start
with gluster 3.2 and i did all configurations using gluster cli
command.
Now when i was looking into way how to tune performance i find out in
documentation on many places some pieces of text configuration files,
but usually there is a warning that it is old and should be not used.
Right now im solving how to turn