Displaying 20 results from an estimated 92 matches for "hardin".
Did you mean:
harding
2003 Jul 02
2
Batch files in R
...e:
R --save BATCH infile outfile
and I've also put
q(save="yes")
at the end of the program, but it will still only save results from one
program. Is there any way to get all the results to save without putting
each of the batch files in a separate directory?
Thanks, Jo
Johanna Hardin
Department of Mathematics & Computer Science
Pomona College
(909) 607-8717
jo.hardin@pomona.edu
[[alternative HTML version deleted]]
2004 May 26
0
Outlier identification according to Hardin & Rocke (1999)
I'm trying to use a paper by Hardin & Rocke: http://handel.cipic.ucdavis.edu/~dmrocke/Robdist5.pdf
as a guide for a function to identify outliers in multivariate data. Attached below is a function that is my attempt to reproduce their method and also a test to see what fraction of the data are identified as outliers. Using this...
2003 Jul 23
4
.ps files in R
...ent options
in ghostscript. I've also tried many different rotating commands in LaTeX
(angle in \includegraphics, \rotate, \sideways,...) But, the picture seems
to be unaffected by any of these commands.
Does anyone know a trick to getting R postscript files into LaTeX?
Thanks, Jo
Johanna Hardin
Department of Mathematics & Computer Science
610 N. College Way
Pomona College
Claremont, CA 91711
(909) 607-8717
jo.hardin@pomona.edu
[[alternative HTML version deleted]]
2004 Jul 14
2
MASS package?
Did the MASS package disappear? Specifically, I'm looking for a function to
find the MCD (robust measure of shape and location) for a multi-dimensional
data matrix.
Anyone know anything about this?
Thanks, Jo
Jo Hardin
Assistant Professor
Department of Mathematics
Pomona College
610 N. College Ave.
Claremont, CA 91711
909-607-8717
jo.hardin@pomona.edu
[[alternative HTML version deleted]]
2005 Nov 01
2
Greek letters in plots
...;.
* paste("rho=", cor2[i])
will produce a label of "rho=0.74", or whatever. But if I use
'substitute' or 'evaluate' commands in order to get a real Greek letter,
I lose the ability to paste it with a data value.
Any ideas?
Thanks, Jo
Jo Hardin
Assistant Professor
Department of Mathematics
Pomona College
610 N. College Ave.
Claremont, CA 91711
909-607-8717
jo.hardin@pomona.edu
-------------------------------------------------------------
This message has been scanned by Postini anti-virus software.
[[alternative HTML versio...
2013 Jul 24
5
[LLVMdev] ubuntu on the mac
On Jul 24, 2013 2:52 AM, "Jacob Carlborg" <doob at me.com> wrote:
>
> Do your LLVM development on Mac OS X :)
Should work well. Apple is one of the bigger supporters of LLVM, so I'd
hope OS X would be a suitable dev platform.
> It depends on what your needs are. Using VirtualBox will probably be the
easiest. It also allows you to run both Mac OS X and Ubuntu
2015 Aug 22
2
SSE return w/ elf64 ABI
...ISelLowering.cpp:2261: report_fatal_error("SSE
register return with SSE disabled");
test/CodeGen/X86/nosse-error2.ll:4:; NOSSE: {{SSE register return with SSE
disabled}}
test/CodeGen/X86/nosse-error1.ll:4:; NOSSE: {{SSE register return with SSE
disabled}}
Thanks for your time,
Tyler Hardin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150822/a70dc3e4/attachment.html>
2000 May 09
3
OpenSSH for SCO?
Has anybody here implemented OpenSSL+OpenSSH on SCO Open Server 5.0.5?
Please contact me off-list. Thanks!
--
John Hardin
Internal Systems Administrator
Apropos Retail Management Systems, Inc.
<johnh at aproposretail.com>
2001 Sep 12
1
Q: 2.5.2p2, RSA auth and expired passwords
Quick question:
ssh client and server 2.5.2p2, RSA authentication. Should the user be
prompted to change their password if it's expired?
--
John Hardin <johnh at aproposretail.com>
Internal Systems Administrator voice: (425) 672-1304
Apropos Retail Management Systems, Inc. fax: (425) 672-0192
2002 Jun 24
1
3.3p1 on Immunix (RH) 6.2
...L 6.x?
%define build6x 1
# Disable IPv6 (avoids DNS hangs on some glibc versions)
%define noip6 1
This appears in the system log:
Jun 24 16:11:51 johnh sshd[27774]: fatal: mmap(65536): Invalid argument
...isn't this supposed to work on RH6.2? Where should I look to fix
this?
Thx.
--
John Hardin <johnh at aproposretail.com>
Internal Systems Administrator voice: (425) 672-1304
Apropos Retail Management Systems, Inc. fax: (425) 672-0192
-----------------------------------------------------------------------
Any time that...
2013 Jun 04
2
[LLVMdev] bug or expected behaviour?
On Jun 4, 2013, at 4:23 PM, Tyler Hardin <tghardin1 at catamount.wcu.edu> wrote:
> If this were a problem with an omitted statement involving a normal variable, I'd guess you're missing a volatile qualifier. I'm not 100% sure volatile is a valid qualifier for functions, but try it.
Well, yes, if I change the signatu...
2013 Jul 25
0
[LLVMdev] ubuntu on the mac
On 2013-07-24 09:47, Tyler Hardin wrote:
> Not much slower. VBox does an amazing job at getting near native
> performance on modern machines (those with nested paging etc.). This is
> definitely the best option if your computer has ~2g ram and 2+ cores.
> Give the Ubuntu VM 2g and 1 (maybe 2) core/s and it should be fi...
2013 Jun 04
5
[LLVMdev] bug or expected behaviour?
On Jun 4, 2013, at 4:42 PM, Tyler Hardin <tghardin1 at catamount.wcu.edu> wrote:
> I was suggesting to add it to the function, like
> volatile void func(..);
> Theoretically, this would tell the compiler not to omit seemingly superfluous calls to func.
'volatile' can't apply to a function, so I'm not sure w...
2013 Feb 20
3
[LLVMdev] ARM assembler's syntax in clang
So it turns out that I was wrong. It, in fact, is not standard. But
regardless, you can use asm to specify the exact name. Eg.
extern int func() asm("func");
You can read more here:
http://stackoverflow.com/questions/1034852/adding-leading-underscores-to-assembly-symbols-with-gcc-on-win32
Despite the title of the thread, the solution is compiler and system
independent.
--------------
2007 Jun 15
2
converting character strings to numbers
...quot;,"11,768.9","11,354.3")
as.numeric(test) # fails
as.numeric(gsub(",","",test)) # works
Any suggestions? Or is this as good as it gets? I'm not complaining ...
just curious!
Drew Tyre
School of Natural Resources
University of Nebraska-Lincoln
416 Hardin Hall, East Campus
Lincoln, NE 68583-0974
phone: +1 402 472 4054 fax: +1 402 472 2946
email: atyre2@unl.edu
http://snr.unl.edu/tyre
[[alternative HTML version deleted]]
2005 Feb 11
1
Joining Samba to a non-Samba,non-AD, NT4 Domain
...oined successfully.
This doesn't make sense since I don't need an NT admin's help to join my
Windows PC to the domain.
I've seen numerous others with a similar problem but they usually
involve either a Samba PDC or Windows AD, so I don't see how they apply
to me.
--
/* wes hardin */
wes[dot]hardin[at]dalsemi[dot]com
UNIX System Admin
Dallas Semiconductor/Maxim Integrated Products
2001 Sep 04
4
openssh and multiple ports
Hi,
I must access several hosts through reverse masquerading gateways
which are visible on the Internet under a single IP address,
with different ports (2, 22, 222, 2222 etc..) forwarding to port 22
of various internal ssh servers, each with its own hostkey.
This setup totally confuses the openssh client because it does not store
the port numbers in the known_hosts* file, and thus falsely
2013 Feb 20
0
[LLVMdev] ARM assembler's syntax in clang
...first time. That post is talking about a Windows target. Ashi is working on iOS. Underscores are normal and expected. Using an "asm" name on the symbol is a horrible hack. Adding the underscore to the name in the .s file is the correct solution.
-Jim
On Feb 20, 2013, at 12:04 AM, Tyler Hardin <tghardin1 at catamount.wcu.edu> wrote:
> So it turns out that I was wrong. It, in fact, is not standard. But regardless, you can use asm to specify the exact name. Eg.
>
> extern int func() asm("func");
>
> You can read more here: http://stackoverflow.com/question...
2013 Jun 04
0
[LLVMdev] bug or expected behaviour?
I was suggesting to add it to the function, like
volatile void func(..);
Theoretically, this would tell the compiler not to omit seemingly
superfluous calls to func.
On Jun 4, 2013, at 4:23 PM, Tyler Hardin <tghardin1 at catamount.wcu.edu>
wrote:
> If this were a problem with an omitted statement involving a normal
variable, I'd guess you're missing a volatile qualifier. I'm not 100% sure
volatile is a valid qualifier for functions, but try it.
Well, yes, if I change the signatu...
2013 Jun 05
1
[LLVMdev] bug or expected behaviour?
On Jun 4, 2013, at 5:20 PM, Tyler Hardin <tghardin1 at catamount.wcu.edu> wrote:
> I tried the "extern" specifier, which (I guess) you should use if the definition isn't in the file; and it worked with -O3.
That 'extern' doesn't do anything - it's implicit. Did you try without it and get different...