Displaying 20 results from an estimated 700 matches similar to: "Help on MLInterfaces"
2011 Nov 07
1
Error: could not find function "MLearn"
I'm getting this error when I try to run the function MLearn():
Error: could not find function "MLearn"
I have the MLInterface tools installed. But when I look for MLearn
"??MLearn" but I don't find it. The closest thing I find is the method
MLearn_new() under MLInterfaces. I've tried replacing MLearn() with
MLearn_new() in my script, but I still get the same
2010 Apr 25
1
Problem loading MLInterfaces
I have been using R 2.10.1. and Bioconductor but the package "MLIntrefaces"
is not being loaded on my platform.
the error message
Error in loadNamespace(i[[1L]], c(lib.loc, .libPaths())) :
there is no package called 'coin'
Error in as.environment(pos) :
no item called "newtable" on the search list
Error: package/namespace load failed for 'MLInterfaces'
2008 Nov 20
2
Reformatting a table
Hi !
I am new to R. Can somebody help me in reformatting huge output files ,i.e, rearranging sets of columns in specific order.
For example: I have data for three compunds 1, 2 and 3
file1:
ID CA1 CA3 CA2 MA2 MA1 MA3
1 14 15 13 7 12 3
2 19 7 12 10 14 5
3 21 12 19 6 8 9
to
File 2:
ID CA1 CA2 CA3 MA1 MA2 MA3
1 14 13 15 12 7 3
2 19 12 7 14 10 5
3 21 19 12 8 6 9
or File3:
ID
2011 Dec 02
5
[LLVMdev] tbaa
Hi,
Could anyone tell me how exactly do I use "Type Based Alias Analysis"?
I compiled the C program with Clang, and verified that there is tbaa
metadata in the IR code.
But then when I use "opt -tbaa input.c.bc -aa-eval" to check the results,
it always gives 100% may aliasing no matter what input.
Am I using "tbaa" correctly?
Thanks.
Yi
2011 Nov 03
1
[LLVMdev] Alias Analysis Problem in LICM
Hi John,
Thank you for your reply! Please see my other questions below:
> DSA is a unification-based points-to analysis. The interface to use it as
> an AliasAnalysis pass was removed since no one was using it and it was
> probably buggy.
- When you say "it was probably buggy", what is buggy? the
"interface", or the AliasAnalysis?
I'm so surprise that no one
2006 Feb 20
2
Write pure sine to *.ogg directly?
Hello,
I am author of a Morse code training software written
in Perl at http://starling.ws/morse
Currently I output to *.wav and, if on Unix, convert to
*.ogg. And that's okay for a trainer.
But I have desire to upgrade the project to a real-time
communication tool...or at least a Morse code audio
mail routine. And I should like to avoid *.wav.
I'd like some means of writing a pure
2011 Dec 02
0
[LLVMdev] tbaa
Can you post the source code of your test case?
Gan
On Fri, Dec 2, 2011 at 1:44 PM, <liyi at cs.toronto.edu> wrote:
> Hi,
>
> Could anyone tell me how exactly do I use "Type Based Alias Analysis"?
>
> I compiled the C program with Clang, and verified that there is tbaa
> metadata in the IR code.
>
> But then when I use "opt -tbaa input.c.bc
2012 Jan 19
8
sumarizar
*Hola!!! resulta que tengo unos datos de divisas ordenados por fechas
(días) los que he convertido a formato tipo YYYY-MM-DD donde DD siempre es
01:*
*
*
*
EUR.resto$date<-as.Date(EUR.resto$date)
EUR.resto$mo <- substr(EUR.resto$date,6,7)
EUR.resto$yr <- substr(EUR.resto$date, 1,4)
2011 Nov 08
2
[LLVMdev] Alias Analysis Problem in LICM
> Yes. The current TBAA implementation is conservative, with the idea that it
> can become more aggressive (and with TBAA, this fundamentally means
> "more dangerous") with incremental steps.
Dan,
Could you disclose more details about how to implement the "incremental steps"
to handle more complicated alias cases? For example, differentiate
different pointers
that
2011 Nov 03
4
[LLVMdev] Alias Analysis Problem in LICM
Hi,
I met an alias analysis problem in the LICM phase. I am using the following
piece of code to present this problem.
1 int size;
2 int ** AAA;
3 void * xalloc(int);
4
5 void foo(void)
6 {
7 int i;
8 AAA = (int**) xalloc(size * sizeof(int*));
9
10 for (i=0; i<size; i++)
11 AAA[i] = 0;
12 }
This code tries to
2003 May 15
5
Session and open files
Hi,
Hi I'm using redhat 9 I've got samba working and I have users onj the
system accessing the shares, Can anyone recomend a programme that can
tell me whch users have got files open on my samba box
Thanks
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Iwan Davies
Server Support and Development Technician
Cyngor Sir Ceredigion County Council
IT Section
Finance
iwandav@ceredigion.gov.uk
2003 May 25
1
Example Data Set(s) for nnet, rpart
Hi,
I'm doing a presentation on Neural Networks and Tree-Based Models in two
weeks, at the moment I'm looking for a data set to use in the
presentation. What I would like to use is a good old data, like the Iris
data, that is already known by every statisticians.
MASS4 uses the cpus data in Chapter 8.10 and the Cushing's syndrome in
Chapter 12.4. These two data sets plus the
2011 Nov 09
0
[LLVMdev] Alias Analysis Problem in LICM
On Nov 7, 2011, at 10:17 PM, Gan wrote:
>> Yes. The current TBAA implementation is conservative, with the idea that it
>> can become more aggressive (and with TBAA, this fundamentally means
>> "more dangerous") with incremental steps.
>
> Dan,
>
> Could you disclose more details about how to implement the "incremental steps"
> to handle more
2011 Dec 07
1
[LLVMdev] tbaa
Dan,
Thanks for clarifying. This makes perfect sense.
Gan
>> Makes sense. In that case, it would give the expected answers if
>> clang was enhanced to properly deal with similar/dissimilar pointer
>> types, instead of giving all pointer types the "everything" tag :)
>
> No, you've confused pointer types with pointee types. That "any pointer"
2003 Apr 24
1
duplicate password prompt
I'm running samba 2.2.8a on a redhat 9 box, everything works great, but
ever since I playd with the system-auth I now have to enter a password
in twice when I logon to the console.
Any one got any ideas
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Iwan Davies
Server Support and Development Technician
Cyngor Sir Ceredigion County Council
IT Section
Finance
iwandav@ceredigion.gov.uk
2011 Nov 03
0
[LLVMdev] Alias Analysis Problem in LICM
On 11/3/11 4:07 PM, Gan wrote:
> Hi,
>
> [snip]
>
> Since the "Anderson" alias analysis code is already moved out from
> LLVM, we can only count
> on BasicAA and TBAA for all alias analysis problems at this moment.
> But these two piece of code
> can only do very limited alias analysis and would become a big
> performance bottleneck to
> other
2006 Nov 16
3
X-fold cross validation function for discriminant analysis
Hi all,
I ran a discriminant analysis with some data and want to get a general idea
of prediction error rate. Some have suggested using X-fold cross validation
procedure. Anyone know if there is a function for this in R?
Thanks,
Wade
[[alternative HTML version deleted]]
2006 Apr 24
2
regression modeling
Hi, there:
I am looking for a regression modeling (like regression trees) approach for
a large-scale industry dataset. Any suggestion on a package from R or from
other sources which has a decent accuracy and scalability? Any
recommendation from experience is highly appreciated.
Thanks,
Weiwei
--
Weiwei Shi, Ph.D
"Did you always know?"
"No, I did not. But I believed..."
2007 Nov 02
0
loading installes package including all needed subpackages
Hallo,
I just installed all needed packages for my project on my PC. But I cannot load all at one time. I now want to load limma. How can I realize the following plan: I want to install for example limma inclusive all needed other sub packages (add-on). Can anyone tell me the corresponding command?
Thanks, Corinna
Here is the result of the command library():
Pakete in Library
2004 Nov 09
2
Segmendation Fault with smbpasswd
If i do a....
bash~#smbpasswd -a -m uos-staff
i get a....
Segmendation Fault
if u use the idealx scripts this appears in log.smbd
(in using samba 3.0.7 with ldap support)
Help!!
===============================================================
[2004/11/09 11:51:07, 0] lib/fault.c:fault_report(37)
INTERNAL ERROR: Signal 11 in pid 2018 (3.0.7)
Please read the appendix Bugs of the Samba HOWTO