search for: abstr

Displaying 12 results from an estimated 12 matches for "abstr".

Did you mean: absar
2009 Nov 26
0
Symbols, install, and eval.
...of this email. Evaluating x succeeds: > # R.Raw.eval_langsxp x;; > function (formula, data, subset, weights, na.action, method = "qr", > model = TRUE, x = FALSE, y = FALSE, qr = TRUE, singular.ok = TRUE, > contrasts = NULL, offset, ...) > - : R.Raw.sexp = <abstr> > # ml_eval x;; > function (formula, data, subset, weights, na.action, method = "qr", > model = TRUE, x = FALSE, y = FALSE, qr = TRUE, singular.ok = TRUE, > contrasts = NULL, offset, ...) > - : R.Raw.sexp = <abstr> While evaluating z fails. (ml_eval i...
2009 Nov 14
1
Silently loading an R package.
...cessit? le package : zoo > > Attachement du package : 'zoo' > > > The following object(s) are masked from package:base : > > as.Date.numeric > > xts now requires a valid TZ variable to be set > no TZ var is set, setting to TZ=GMT > - : R.sexp = <abstr> > # -- Guillaume Yziquel http://yziquel.homelinux.org/
2009 Nov 16
0
OCaml-R and xts works!
...a valid TZ variable to be set > no TZ var is set, setting to TZ=GMT Printing stuff at "compile-time"... That's ugly, I know... > # R.sexptype Xts.xts;; > - : R.sexptype = R.PromSxp So we indeed have a function. > # let x = R.eval [Xts.xts];; > val x : R.sexp = <abstr> We construct a dummy time series... > # R.sexptype x;; > - : R.sexptype = R.RealSxp > # Cool... The xts.ml code is essentially: > (* You describe the library, its name and symbols. *) > module Description : R.LibraryDescription = struct > let name = "xts" &gt...
2006 Jun 23
1
Compiling R 2.3.1 on SuSE 8.2 and 10.0: error with libRlapack.so (PR#9026)
...eiJfnJY3lleZF FLFHj0cefaRBIQlMc1WvDcY3v9NAi6xw3MpddzjK/fnmt4bsVqmhx6C3A5rJ3JttjdMWITyT OM8lL8He5c165S1061LoSErDpq7Z8T2CRZGWnZiBihU8AG3DRfmmjBoXn2NlII0UsAIiW730 NHtxcvWqHfA/qFNp5OrzyI680mjv3bsRPVpWPditz58rSZ4/H/s2nz8fwR1ADsbdjgN0r+vg menN+D6RUrBNIanvn509sJxtYIjLw9mzZ8+UJVFkGTRdL0HDgy061jChL11UevmENQ/aBstR yGkOo0Z6EpobgJIup/7AChlCt0MVm0OlVBSWvQEjLocSbcbpdadByiLVoVB4D3KfOWhUX+H7 jPsdhQI4SBvTUFA0EHuaYdaxJjq2RJq0Gp8m3uxjf3DQgG9TllNQmRmF5TKFpZ1tBBFMM8lI nvtgfrRZaY3gaaPtKFGvfWAdn6NpnM931nKwbqStWIZoctkKBepcc2FCEy4OTkqbTCyVTpEl mOo2gQvoShkaCsM4CtL5DoYbsQzoCgFTNKdpQM1WlQb1ynA4JuSRJUUCllm6lTtcSmAwJCQN caCijtk...
2009 Jun 01
1
installing sn package
...up when I asked him to.  (The BibTeX entries for both books are at the bottom of this message, in case that's useful.) Jay: why not post your R-books how to on the wiki itself???   I wrote some R code to wikify the R-books list from the R web site -- it won't deal with LaTeX code in the abstract, but otherwise should convert automatically. w <- readLines(url("http://www.r-project.org/doc/bib/R-books.bib")) g <- c(grep("^@",w),length(w)+1) gd <- diff(g) gd2 <- rep(1:length(gd),gd) w2 <- split(w,gd2) w2 <- w2[-na.omit(match(g,grep("^@comment&quo...
2019 Apr 08
0
[PATCH v4 2/7] common: Bundle the libvirt-ocaml library for use by virt-v2v
...Objective Caml version 3.10.0 + +# #load "unix.cma";; +# #load "mllibvirt.cma";; +# let name = "test:///default";; +val name : string = "test:///default" +# let conn = Libvirt.Connect.connect_readonly ~name () ;; +val conn : Libvirt.ro Libvirt.Connect.t = <abstr> +# Libvirt.Connect.get_node_info conn;; + : Libvirt.Connect.node_info = +{Libvirt.Connect.model = "i686"; Libvirt.Connect.memory = 3145728L; + Libvirt.Connect.cpus = 16; Libvirt.Connect.mhz = 1400; + Libvirt.Connect.nodes = 2; Libvirt.Connect.sockets = 2; + Libvirt.Connect.cores = 2;...
2019 Dec 16
3
[v2v PATCH 0/2] Move libvirt-ocaml copy to v2v repo
libvirt-ocaml is used only by virt-v2v, so move it to this repository, instead of having it around in the common submodule. The removal from common will happen later. Pino Toscano (2): common: Bundle the libvirt-ocaml library for use by virt-v2v build: switch embedded copy of libvirt-ocaml .gitignore | 2 + 3rdparty/libvirt-ocaml/Makefile.am |
2018 Aug 30
8
[PATCH 0/7] RFC: switch v2v to ocaml-libvirt
Hi, this is a mostly done attempt to switch to ocaml-libvirt, embedding the latest version of it from git. This way, it is possible to improve the way v2v connects to libvirt for both input, and output modules, and interacts with libvirt (e.g. no more virsh calls needed in virt-v2v). As side effect, virt-v2v now requires libvirt, as keeping it optional would create too much burden. I could not
2018 Nov 27
8
[PATCH v2 0/7] RFC: switch v2v to ocaml-libvirt
Hi, this is a mostly done attempt to switch to ocaml-libvirt, embedding the latest version of it from git. This way, it is possible to improve the way v2v connects to libvirt for both input, and output modules, and interacts with libvirt (e.g. no more virsh calls needed in virt-v2v). As side effect, virt-v2v now requires libvirt, as keeping it optional would create too much burden. I could not
2019 Jan 30
8
[PATCH v3 0/7] RFC: switch v2v to ocaml-libvirt
Hi, this is a mostly done attempt to switch to ocaml-libvirt, embedding the latest version of it from git. This way, it is possible to improve the way v2v connects to libvirt for both input, and output modules, and interacts with libvirt (e.g. no more virsh calls needed in virt-v2v). As side effect, virt-v2v now requires libvirt, as keeping it optional would create too much burden. I could not
2019 May 20
8
[PATCH v5 0/7] v2v: switch to ocaml-libvirt
Hi, this series switches virt-2v to ocaml-libvirt, embedding the latest version of it from git. This way, it is possible to improve the way v2v connects to libvirt for both input, and output modules, and interacts with libvirt (e.g. no more virsh calls needed in virt-v2v). As side effect, virt-v2v now requires libvirt, as keeping it optional would create too much burden. I could not test all
2019 Apr 08
12
[PATCH 43 0/7] v2v: switch to ocaml-libvirt
Hi, this series switches virt-2v to ocaml-libvirt, embedding the latest version of it from git. This way, it is possible to improve the way v2v connects to libvirt for both input, and output modules, and interacts with libvirt (e.g. no more virsh calls needed in virt-v2v). As side effect, virt-v2v now requires libvirt, as keeping it optional would create too much burden. I could not test all