search for: calc

Displaying 20 results from an estimated 647 matches for "calc".

Did you mean: cac
2015 Jan 28
2
[Q] Get formal arguments of my implemented S4 method
...message("str(norm.meth)") >str(norm.meth) >message("show(norm.meth at .Data)") >show(norm.meth at .Data) Last show() displays this: function (object, ...) { .local <- function (object, method = c("median", "vs", "tukey"), calc.medians = TRUE, sweep.cols = calc.medians, recalc.after.sweep = sweep.cols, ...) { .do_normalize(object, method = match.arg(method), calc.medians = calc.medians, sweep.cols = sweep.cols, recalc.after.sweep = recalc.after.sweep,...
2011 Jan 20
0
Writing functions. please help
...20)*(t/20)^(2.5-1)*exp(-(t/20)^2.5) +return(dist)} and then i used that to write as follows, use shape=2.5, scale=20, and transfering Ca and Cb to the integral's interior: func=function(t){ func1=function(t){ weibull=function(t){ dist=1000*(2.5/20)*(t/20)^(2.5-1)*exp(-(t/20)^2.5) return(dist)} calc=integrate(weibull, 0, t) return(calc)} func2=function(t){ weibull=function(t){ dist=100*(2.5/20)*(t/20)^(2.5-1)*exp(-(t/20)^2.5) return(dist)} calc=integrate(weibull,t, 100) return(calc)} func3=function(t){ weibull=function(t){ dist=t*(2.5/20)*(t/20)^(2.5-1)*exp(-(t/20)^2.5) return(dist)} calc=inte...
2006 May 18
1
Recommended style with calculator and persistent data
I have some calculations that require persistent state. For example, they retain most of the data across calls with different parameters. They retain parameters across calls with different subsets of the cases (this is for distributed computation). They retain early analysis of the problem to speed later computat...
2015 Jan 28
2
[Q] Get formal arguments of my implemented S4 method
...UI (in a different package), to provide default values, argname as key for UI label lookups, etc. So I want something much more like the formals of the implementation: { "object", "method": c("median", "vs", "tukey"), "calc.medians": TRUE, "sweep.cols": calc.medians, "recalc.after.sweep": sweep.cols, "?" } not those of the generic: { "object", "?" } From: Michael Lawrence <lawrence.michael at gene.com> Date: Wednesday,...
2007 Jun 06
3
Unrecognized character \xED at perl-Date-Calc-5.4-1.2.2.1.i386.rpm line 1
I've just install centos 5.0 on new PC. However it gives this error while installing per-Date-Calc: [root at piranha tmp]# perl -ivh perl-Date-Calc-5.4-1.2.2.1.i386.rpm Unrecognized character \xED at perl-Date-Calc-5.4-1.2.2.1.i386.rpm line 1. what could be the problem? --beast
2007 Dec 03
2
Why is the program too slow?
Hi,everyone. I use the following program calculates Fisher's alpha from counts of individuals and species. The program is wrote by Prof. Kyle Harm. However, when I run the program, it can work very quickly sometimes, but it can not work very well sometimes. It depends on the counts of individuals and species. For example, > calc.alpha(...
2010 Oct 13
7
[OT] (slightly) - OpenOffice Calc and text files
...n of the experiment and associates it with some subjective measurements and times from our notes that get used to index another file with lots of automatically collected data. In short, nothing shocking. In a moment of weakness, I opened the file using (I think it's version 3.2) of OpenOffice Calc to edit something that I had mangled when I first entered it, saved it (apparently the mistake), and reran my analysis code. The results were goofy, and the problem was in my code that runs before R ever sees the data. That code was confused by things that I would like to ensure don't happen...
2008 Sep 25
1
Confusion over syntax in a package
...ackage for some research I am conducting. The package works fine when I call the functions from the command line as the examples instruct. However, I am attempting to step through some of the functions so that I can obtain a better idea of what is going on. I have come to the following command: calc.dist(coord1.day.index,coord2.day.index,id.day.index) I know what this is supposed to do, it is calculating the geographic distance between a series of latitude and longitude points. However, I am informed by R that no such function exists. I searched through the whole package for a function decl...
2006 Jan 30
2
TI83 plus Texas Instrument Calculator, Serial cable and USB cable
Hi all I installed *wine 9.6 on fedora4, IE6* , and *APPs* for *CALC TI83 plus * i tried to use the *USB *cable to connect to the *CALC* but did`t work then i used *serial cable* after i make *? ln -s /dev/ttyS0 ~/dosdevices/com1? *then i run the "TI Connect APPs" to coonect to the *CALC *it finds the *COM1* when it tried connect to the* CALC* but...
2009 Aug 06
5
Serious bug in OpenOffice.org Calc shipped with CentOS
Hi, Until now I've been a happy user of CentOS. Everything just works(tm), and I don't care if application versions are slightly outdated. Next week I have to give a series of classes for a company that recently made the switch to Linux. On schedule is a one-week course for Writer and Calc. And right now I discover that one crucial function of Calc, "fill series", doesn't work. Let's say I type "lundi" (monday) in one cell, so I can pull Calc's handle to fill other cells with the days of the week. Doing the same with "janvier" (january) d...
2003 Oct 09
1
R-OpenOffice.org Calc
I have been very satisfied with R-Excel interface (DCOM). Few months ago I have changed my OS to Linux-Mandrake, and now I am using OpenOffice.org Calc as spreadsheet. I would like to know does exist some R-OpenOffice.org interface or how is possible to use R-functions in OpenOffice.org Calc? Thanks a lot!
2010 Jun 17
1
[OT] Oo-calc & StAtistics
The thread "R licensing query" currently running has raised the classic critcisms of using Excel for statistics. I was wondering: Has anyone applied the same or similar set of tests to OpenOffice "calc"? Or would the Executive Summary be: "Calc is just like Excel"? (Not that I'm a spreadsheet user, if I can avoid it; but I sometimes get asked about such things). Sorry to be completely non-R here, but I can't think of a better place to ask! Ted. ------------------------...
2015 Jan 29
0
[Q] Get formal arguments of my implemented S4 method
...e default values, > argname as key for UI label lookups, etc. > > So I want something much more like the formals of the implementation: > > { > "object", > "method": c("median", "vs", "tukey"), > "calc.medians": TRUE, > "sweep.cols": calc.medians, > "recalc.after.sweep": sweep.cols, > "?" > } > > not those of the generic: > > { > "object", > "?" > } > > > From: Micha...
2015 Jan 29
3
[Q] Get formal arguments of my implemented S4 method
...ame as key for UI label lookups, etc. >> >> So I want something much more like the formals of the implementation: >> >> { >> "object", >> "method": c("median", "vs", "tukey"), >> "calc.medians": TRUE, >> "sweep.cols": calc.medians, >> "recalc.after.sweep": sweep.cols, >> "?" >> } >> >> not those of the generic: >> >> { >> "object", >> "?&quo...
2007 Dec 14
1
RJDBC to OpenOffice Calc as RODBC to MS Excel
...the sheets. I can also have UNION queries that allow me to overcome the spreadsheet row limitation of a single sheet. The idea is to allow normalization of data in a spreadsheet and leveraging the power of SQL, without using a database. Can the same be done under Windows (Linux?) with OpenOffice Calc using RJDBC? Are there ODBC drivers for OpenOffice Calc? I know that the right solution would be to use a database, but this is outside the comfort zone of many users who rely mainly on spreadsheets to collect, manipulate and analyze their data. Thomas Metz International Rice Research Institute...
2015 Jan 28
0
[Q] Get formal arguments of my implemented S4 method
...th) > > >message("show(norm.meth at .Data)") > >show(norm.meth at .Data) > > > Last show() displays this: > > function (object, ...) > { > .local <- function (object, method = c("median", "vs", "tukey"), > calc.medians = TRUE, sweep.cols = calc.medians, > recalc.after.sweep = sweep.cols, ...) > { > .do_normalize(object, > method = match.arg(method), > calc.medians = calc.medians, > sweep.cols = sweep.cols, > recalc.af...
2006 Apr 16
1
Var.calc in Match()
Does anyone else find that using the Var.calc option (for heteroscedasticity consistent std. errors) in Match() (from the Matching library) slows down computation of the matching estimator by a lot? I don't really understand why when I use this option it slows down so much, but for me it does significantly. I want to use the heteroscedast...
2009 Nov 03
1
OpenOffice Calc ODBC equivalent
Hi R users: I am using RODBC to create some new ".xls" files each with several sheets (about 100) with sqlSave() from a data.frame inside R without any problem, but on windows XP platform. I would like to know if it is posible to make a similar solution on linux with openoffice? RODBC work only (for the moment) with ".xls" on windows, via the ODBC driver. Is it posible to
2009 Apr 08
1
Genstat into R - Randomisation test
...defence (CD). Since Induced and constitutive defence are not independant (so called spurious correlation) I should do a randomisation test. I have a syntax of my supervisor in Genstat, but I would really like to try this in R. "data from trade-off.IDCD" list variate [nval=1000] slope calc ID1=ID graph ID; CD calc b=corr(ID; CD) calc slope$[1]=b "slope$[1] is the correlation before permutating the data" for i=2...1000 randomize ID1 calc b=corr(CD1; ID1) calc slope$[i]=b endfor hist slope describe slope quantile [proportion=!(0.0005,0.005, 0.025, 0.975, 0....
2010 Apr 03
2
(OT) OpenOffice.org calc chart strangeness.
I am attempting to create a simple line chart graphing three columns from a soffice-calc spreadsheet. I expect it to take the leftmost column as the X-Axis, plotting the others on the Y-Axis, but it always creates an X-Axis of the row number in the columns, and the first column amongst the data. I have tried this on OpenOffice.org 3.2.0, NeoOffice(R) 3.0.2 Patch 2, iWork Pages, and E...