search for: outtyp

Displaying 9 results from an estimated 9 matches for "outtyp".

Did you mean: outtop
2009 Apr 01
2
Public R servers?
...ferent system.. I know that R supports R servers through Rserve. Are there any public servers where I could upload my datasets (either as a text file, or through a connection to a SQL server), execute the analysis, then download the results? I identifed Wessa.net (http://www.wessa.net/mrc.wasp?outtype=Browser%20Blue%20-%20Charts%20White), but it's not clear it will meet my needs. Can anyone suggest any other resources? Thanks in advance, Aaron Barzilai [[alternative HTML version deleted]]
2018 Apr 12
2
R Timeseries tsoutliers:tso
...;Additive Outliers","Levels Shifts","Seasonal Level Shifts","Innovation Outlier","Temporary Change") tsFrequency <- 52 params <- list("outlier.types" = outlier.types,"tsFrequency" = tsFrequency) tsFrequency = params$tsFrequency outTypes <- unlist(params$outlier.types) ts.var <- ts(inputData[,1], frequency = tsFrequency) ts_outlier <- tso(ts.var, types = ?outlier.types ? , maxit = 1) ? This piece of code runs in about 60 seconds on my laptop but take about upward of 13 mins on a decent AWS node with nothing else runnin...
2010 Nov 03
1
Gotoif changed in 1.8?
...fine with 1.4.30) [tb-account-balance] exten => s,1,Set(BALCOUNT=0) exten => s,n,NoOp(Verbose(acct ${digitacc} pwd ${digitpwd} )) exten => s,n(runagi),Set(TEST_RETURN="NONE") exten => s,n,AGI(acctbal.agi,${ABA},${digitacc},${digittype},${digitport},${CHANNEL(l anguage)},${outtype}) exten => s,n,NoOp(Verbose(bal AGI RETURNED ${TEST_RETURN} )) exten => s,n,Set(BALCOUNT=$[${BALCOUNT} + 1]) exten => s,n,Gotoif($[${BALCOUNT} > 3]?tb-account-balance,s,reset_bc) exten => s,n,Gotoif($["${TEST_RETURN}" = "OK"]?tb-account-balance,s,ok) exten =...
2018 Apr 13
0
Fwd: R Timeseries tsoutliers:tso
...;Additive Outliers","Levels Shifts","Seasonal Level Shifts","Innovation Outlier","Temporary Change") tsFrequency <- 52 params <- list("outlier.types" = outlier.types,"tsFrequency" = tsFrequency) tsFrequency = params$tsFrequency outTypes <- unlist(params$outlier.types) ts.var <- ts(inputData[,1], frequency = tsFrequency) ts_outlier <- tso(ts.var, types = ?outlier.types ? , maxit = 1) ? This piece of code runs in about 60 seconds on my laptop but take about upward of 13 mins on a decent AWS node with nothing else runnin...
2012 Mar 28
0
[LLVMdev] GSoC 2012 Proposal: Python bindings for LLVM
...nction. Then how is _wLLVMAddFunction defined? Also in *_core.c* file, there is such a statement that is related to LLVMAddFunction: *_wrap_objstrobj2obj(LLVMAddFunction, LLVMModuleRef, LLVMTypeRef, LLVMValueRef) * This macro is defined in wrap.h file: */** * Wrap LLVM functions of the type * outtype func(intype1 arg1, const char *arg2, intype3 arg3) */ #define _wrap_objstrobj2obj(func, intype1, intype3, outtype) \ static PyObject * \ _w ## func (PyObject *self, PyObject *args) \ { \ P...
2018 Aug 21
0
[PATCH 2/2] OCaml tools: add output selection for --machine-readable
...ll an exit hook to check gc consistency for --debug-gc *) let set_debug_gc () = at_exit (fun () -> Gc.compact()) in + let parse_machine_readable = function + | None -> + machine_readable_output := Channel stdout; + set_machine_readable () + | Some fmt -> + let outtype, outname = String.split ":" fmt in + if outname = "" then + error (f_"invalid format string for --machine-readable: %s") fmt; + (match outtype with + | "file" -> machine_readable_output := File outname + | "stream" -&g...
2018 Aug 21
4
[PATCH 0/2] RFC: add output selection for --machine-readable
Hi, this is a first approach (hence RFC, since it misses tests & documentation) in selecting the output for --machine-readable. The possible choices are: * --machine-readable: to stdout, like before * --machine-readable=file:name-of-file: to the specified file * --machine-readable=stream:stdout: explicitly to stdout * --machine-readable=stream:stderr: explicitly to stderr This makes it
2018 Aug 23
0
[PATCH v2 2/2] OCaml tools: add output selection for --machine-readable
...false) usage_msg = (** Install an exit hook to check gc consistency for --debug-gc *) let set_debug_gc () = at_exit (fun () -> Gc.compact()) in + let parse_machine_readable = function + | None -> + machine_readable_output := Channel stdout + | Some fmt -> + let outtype, outname = String.split ":" fmt in + if outname = "" then + error (f_"invalid format string for --machine-readable: %s") fmt; + (match outtype with + | "file" -> machine_readable_output := File outname + | "stream" -&g...
2018 Aug 23
3
[PATCH v2 0/2] add output selection for --machine-readable
Hi, this adds the possibility to select the output for --machine-readable in OCaml tools. The possible choices are: * --machine-readable: to stdout, like before * --machine-readable=file:name-of-file: to the specified file * --machine-readable=stream:stdout: explicitly to stdout * --machine-readable=stream:stderr: explicitly to stderr This makes it possible to add additional output for