Displaying 20 results from an estimated 81 matches for "oce".
Did you mean:
once
2009 Sep 03
1
Output from as.windrose() in oce package baffles me
...9;t one side of each sector interval be open, to
include values such as my 45 in the example? Also, why does the angle
180 in my input apparently not result in a count of 1 for the output for
180? The $data$theta value of 180 refers to a sector centered at 180
whose angle is 90, correct?
library(oce)
# azimuths <- c(22.5, 45, 90, 180, 270) # 0 and 360=north, 90=east,
180=south, 270=west
angles <- c(67.5, 45, 0, 270, 180) # geometric equivalents of azimuths
radians <- angles * pi /180
x <- round(cos(radians), 6)
y <- round(sin(radians), 6)
w <- as.windrose(x, y, dtheta = 90...
2004 Jun 25
0
SSH_MSG_USERAUTH_PASSWD_CHANGEREQ and 3.1.0 F-SECURE SSH - Pr oces s Software SSH for OpenVMS
Darren,
> -----Original Message-----
> From: Darren Tucker [mailto:dtucker at zip.com.au]
> Sent: Thursday, June 17, 2004 11:08 PM
> To: Scott Rankin
> Subject: Re: SSH_MSG_USERAUTH_PASSWD_CHANGEREQ and 3.1.0
> F-SECURE SSH - Pr oces s Software SSH for OpenVMS
>
>
> Scott Rankin wrote:
> >>That will depend on which versions exhibit the problems. Is it
> >>specific to the VMS implementation? Can the vendor tell you?
> >
> > I have contacted Process Software to find out which
> ver...
2001 Nov 28
2
Problem with printer driver sharing Win2k klients.
Hi...
I got this new server at work that I have to get 100% up and running by
tomorrow.
It's running Samba 2.2.1a on SuSE 7.3 Pro
It's supposed to be VPN - File and Printer Server
The printers are:
One OCE 700C / CS90 color copier and One OCE 3165
And there is only one problem left.
I can install the printer drivers for Win9x & NT on the samba server.
But I can't figure out how to install Win2000/XP drivers.
When trying to use a Win2k pro client to install the drivers it just
complains about...
2013 Jul 10
2
ASRock B85M Pro4 micro-ATX Motherboard Supports VT-d!!!
Hi,
I have just upgraded my computer to Intel Core i5-4430 Quad Core @ 3.0
GHz (supports VT-d), ASRock B85M Pro4 micro-ATX LGA1150 motherboard
(supports VT-d), 8 GB Kingston DDR3-1600 memory and Cooler Master Elite
311 ATX casing (all for SGD$501).
I made my computer upgrade on Independence Day 4th July 2013.
I have also flashed the UEFI BIOS of ASRock B85M Pro4 motherboard to
version 1.50.
2005 Dec 10
0
package building fails on OSX 10.4 with (lcc_dynamic error)
I have a package that contains some fortran code. It has been built
in the past, but now I have an updated Apple OSX 10.4 (Tiger) system,
and it fails. The behaviour is as follows
$ R CMD CHECK oce
,,,
gcc-3.3 -bundle -flat_namespace -undefined suppress -L/usr/local/lib
-o oce.so geoddist.o ocecp.o rho.o spice.o strho.o theta.o tsrho.o -
L/usr/local/lib/gcc/powerpc-apple-darwin6.8/3.4.2 -lg2c -lSystem -
lcc_dynamic -F/Library/Frameworks/R.framework/.. -framework R
ld: can't locate...
2006 Apr 30
0
Package-check failure (i386) (PR#8822)
Full_Name: Dan Kelley
Version: 2.3.0
OS: OSX Macintosh
Submission from: (NULL) (142.68.207.218)
R2.3.0 has a problem checking one of my self-authored Oce package
(http://myweb.dal.ca/kelley/pub/sof/oce/index.php). The package builds fine on
another machine running a R2.2.1. Both machines are macintoshes running the
latest version of OSX.
I am reporting this here not to get help - I realize the package is too big to
provide a test case - but rathe...
2009 Jan 12
4
fitting curve to data
...1800 1900 2000 2100 2200 2300 2400 2500
I'd like to plot the points and calculate a curved line of best fit. I know I need to use nls(), but
I'm unsure how to begin....any pointers?
Cheers,
Nathan
- --
- --------------------------------------------------------
Dr. Nathan S. Watson-Haigh
OCE Post Doctoral Fellow
CSIRO Livestock Industries
Queensland Bioscience Precinct
St Lucia, QLD 4067
Australia
Tel: +61 (0)7 3214 2922
Fax: +61 (0)7 3214 2900
Web: http://www.csiro.au/people/Nathan.Watson-Haigh.html
- --------------------------------------------------------
-----BEGIN PGP SIGNATURE-...
2007 May 24
1
"[RODBC] ERROR: Could not SQLExecDirect"
Hi, everyone,
I try to run as follows:
Z>library("RODBC")
Z>cnct<-odbcConnectExcel("Forbes2000.xls")
Z>cnct
RODB Connection 1
Details:
case=nochange
DBQ=C:\Program Files\R\R-2.5.0\Forbes2000.xls
DefaultDir=C:\Program Files\R\R-2.5.0
Driver={Microsoft Excel Driver (*.xls)}
DriverId=790
MaxBufferSize=2048
PageTimeout=5
Z>sqlQuery(cnct, "select
2010 Jan 27
2
Bulk Match/Replace
...; "2" "4" "2" "1"
"2" "2" "1" "2" "2" "1" "2" "2"
Cheers,
Nathan
--
--------------------------------------------------------
Dr. Nathan S. Watson-Haigh
OCE Post Doctoral Fellow
CSIRO Livestock Industries
University Drive
Townsville, QLD 4810
Australia
Tel: +61 (0)7 4753 8548
Fax: +61 (0)7 4753 8600
Web: http://www.csiro.au/people/Nathan.Watson-Haigh.html
2013 Aug 23
0
CUPS working but errors from Windows clients accessing printer
Hi,
On CentOS 6.4 (newdc), I have CUPS 1.4.2-50.el6_4.5 installed, can
access its web interface. There I set up our main shared printer, an
OCE Imagistics cm2520, and successfully printed a test page.
With SerNet Samba 4.0.9 on the same box configured every which example
way I could find, I cannot seem to get it to the point where
double-clicking the printer in Windows (W2K3, OLDDC) opens up the print
queue (as it does from \\olddc)....
2009 Jan 07
2
Memory Efficiency of Symmetric Matrix
...nt way to store this data? For instance, since:
all(mat == t(mat))
every value is duplicated, and I should be able to almost half the memory usage for large matrices.
Any thoughts/comments?
Cheers,
Nathan
- --
- --------------------------------------------------------
Dr. Nathan S. Watson-Haigh
OCE Post Doctoral Fellow
CSIRO Livestock Industries
Queensland Bioscience Precinct
St Lucia, QLD 4067
Australia
Tel: +61 (0)7 3214 2922
Fax: +61 (0)7 3214 2900
Web: http://www.csiro.au/people/Nathan.Watson-Haigh.html
- --------------------------------------------------------
-----BEGIN PGP SIGNATURE-...
2007 Feb 22
2
Combining tapply() and cor.test()?
...6-07-31 4.71 -0.05
356 GEVAERT NPV 1996-08-30 NA NA
357 NOKIA K FMA2.50 1996-08-30 7.65 0.03
358 Altadis S.A. 1996-08-30 7.65 0.55
359 Metrovacesa S.A. 1996-08-30 4.55 -0.17
360 Oce N.V. 1996-08-30 9.43 0.23
The variable "Periods" is a date object, shows the month.
Variables "Returns" and "MFR.Factor" are numeric.
For each month the number of Returns and MFR.Factors varies, sometimes
it is 350, sometimes 320 etc.
What I need...
2010 Jan 13
1
decompress tar.gz and zip files
Can anyone point me in the right direction for decompressing text files that are
compressed as tar.gz or zip files?
Cheers,
Nathan
--
--------------------------------------------------------
Dr. Nathan S. Watson-Haigh
OCE Post Doctoral Fellow
CSIRO Livestock Industries
University Drive
Townsville, QLD 4810
Australia
Tel: +61 (0)7 4753 8548
Fax: +61 (0)7 4753 8600
Web: http://www.csiro.au/people/Nathan.Watson-Haigh.html
2010 Feb 08
2
Help with apply()
...]$b)
+ }
How do I do this using apply()? I'm unsure how to tell apply() to pass
data from columns a and b for a given row as arguments to the function
myFun().
Thanks in advance for any pointers,
Nathan
--
--------------------------------------------------------
Dr. Nathan S. Watson-Haigh
OCE Post Doctoral Fellow
CSIRO Livestock Industries
University Drive
Townsville, QLD 4810
Australia
Tel: +61 (0)7 4753 8548
Fax: +61 (0)7 4753 8600
Web: http://www.csiro.au/people/Nathan.Watson-Haigh.html
2009 Apr 18
1
Rd: how to put a prime in a code fragment?
I have written a function for my 'oce' package that creates a data.frame
containing a variable name with a prime in it. (I use prime to indicate
coordinate rotation, a reasonably standard convention that motivates the odd
variable name.)
How can I name that in an Rd file? I tried \code{u'} but R-2.9.0 doesn't
like to bui...
2010 Mar 18
1
Intersect, Union of date/time ranges
...of date/time ranges i.e. return the
start/end date/time ranges which are in 1 or both sets
Is there anything that is currently able to do this? If not, I'll start
to code something.
Kind regards,
Nathan
--
--------------------------------------------------------
Dr. Nathan S. Watson-Haigh
OCE Post Doctoral Fellow
CSIRO Livestock Industries
University Drive
Townsville, QLD 4810
Australia
Tel: +61 (0)7 4753 8548
Fax: +61 (0)7 4753 8600
Web: http://www.csiro.au/people/Nathan.Watson-Haigh.html
2005 Jul 05
1
Samba + Cups error show jobs
Hi!!
I can see this error every time a windows client tries see the jobs for
any of the printers on the print server:
(log.smbd)
[2005/07/05 16:22:12, 0] printing/print_cups.c:cups_queue_get(790)
Unable to get jobs for ipp://localhost/printers/oce_ -
client-error-not-found
The result is that clients can't view (cancel or pause) any of the jobs
on the queue.
I also can see this error on the cups error log:
(error_log)
E [05/Jul/2005:16:22:12 +0200] get_jobs: resource name '/printers/oce_'
no good!
Of course, printer oce_ on l...
2012 Feb 23
1
Using R to read Nortek Aquadopp Profiler
Hello,
I have current data from a nortek ADP, which is basically current speed and
direction data in a 3 dimensional X Y Z format
http://www.nortekusa.com/usa/products/current-profilers/aquadopp-profiler-1
The instrument logs data in a complex way and I was wondering if anyone has
had any experience using R to at least read the data, and perhaps smooth it
as well. If so, are there any
2009 Jan 25
1
Warning: closing unused connection 3
The subject is a warning that occurs with my 'oce' package in the test on
r-devel-windows-ix86, i.e.
http://cran.r-project.org/web/checks/check_results_oce.html
I see that some other packages have this same error. I tried searching
postings to this group for this warning, but found nothing. I'm pretty sure
this warning message was not...
2010 Jan 25
1
RMySQL Append data.frame to table
...9;)
[1] FALSE
Warning message:
In mysqlWriteTable(conn, name, value, ...) : could not load data into table
Can anyone shed light on this error, or how I might bulk load this data
using RMySQL?
Cheers,
Nathan
--
--------------------------------------------------------
Dr. Nathan S. Watson-Haigh
OCE Post Doctoral Fellow
CSIRO Livestock Industries
University Drive
Townsville, QLD 4810
Australia
Tel: +61 (0)7 4753 8548
Fax: +61 (0)7 4753 8600
Web: http://www.csiro.au/people/Nathan.Watson-Haigh.html