search for: installpackag

Displaying 20 results from an estimated 24 matches for "installpackag".

Did you mean: installpackage
2006 Feb 23
0
JGR problem with installPackages()?
Dear r-helpers, When I pull down the Packages:Package Installer menu, I get: ================================== > installPackages() stack imbalance in .External, 22 then 66 stack imbalance in <-, 20 then 64 stack imbalance in <-, 117 then 118 stack imbalance in {, 115 then 116 stack imbalance in if, 113 then 114 stack imbalance in {, 111 then 112 stack imbalance in <-, 105 then 106 stack imbalance in {, 103 then 10...
2012 Apr 03
6
2 package resources for the same package installation in two differents modules caused errors
...class apache::install { ... package { [ "php5", "php5-cli", "php5-gd", "php5-imagick", "php5- mysql", "phpmyadmin", "mysql-client" ]: ensure => installed, } ... } /etc/puppet/modules/cms/manifests/init.pp class cms::installpackage { ... package { ''php5-imagick'': name => ''php5-imagick'', ensure => ''installed'', } ... } In order to fix the error, we prefixed the resource in cms::installpackage class with cms_ package { ''cms_php5-imagick'&...
2008 Jul 29
2
FW: Installing BRugs
A funny thing happened when I wanted a student of mine to install Brugs. Using the InstallPackages in the windows version, firts gives an erro, but trying again works flawlessly. R version is 2.7.0 on WinXP. Any explanation? Bendix Carstensen ______________________________________________ Bendix Carstensen Senior Statistician Steno Diabetes Center Niels Steensens Vej 2-4 DK-2820 Gentofte D...
2009 Sep 11
3
State Space models in R
Hello everybody, I am writing a review paper about State Space models in R, and I would like to cover as many packages as I reasonably can. So far I am familiar with the following tools to deal with SS models: * StructTS, Kalman* (in stats) * packages dse[1-2] * package sspir * package dlm I would like to have some input from users who work with SS models: are there any other packages for SS
2007 May 21
1
Installing packages from command line on Linux RHEL4
Greetings. I am a System Administrator, and thus have very little knowledge of R itself. I have been asked to install a list of some 200 packages (from CRAM) to R. Rather than installing each package manually, I was hoping I could script this. I've written a BASH script that hopefully will do this, but I'm wondering about the Mirror Selection portion of the installation process.
2011 Nov 13
1
issue using package sos
Issue with sos package I am now using R 2.14 and the sos package did work with 2.13 > library(sos) Loading required package: brew Attaching package: 'sos' The following object(s) are masked from 'package:JGR': installPackages The following object(s) are masked from 'package:utils': > library("sos"); findFn("random forest") found 253 matches; retrieving 13 pages 2 3 4 5 6 7 8 9 10 11 12 13 ++++++++++++++++++++++++++ the first part looks as it used to int he past...but now I have the fo...
2011 Jan 10
2
problem with packages
Hello, I am on a laptop with Win7, running R-2.12.1 if I click on Packages/InstallPackages I get : > utils:::menuInstallPkgs() Warning: unable to access index for repository http://cran.skazkaforyou.com/bin/windows/contrib/2.12 Warning: unable to access index for repository http://www.stats.ox.ac.uk/pub/RWin/bin/windows/contrib/2.12 Error in install.packages(NULL, .libPaths()[1L],...
2017 Jan 09
1
problem with print.generic(x)deparse(substitute(x))
...Fn('spline', 1)) Currently, the HTML starts as follows: findFunction Results call: findFn(string = "spline", maxPages = 1) I want it to start as follows: findFn Results call: (k <- findFn(string = "spline", maxPages = 1)) For a package summary: installPackages(k); writeFindFn2xls(k) When I added "ds <- deparse(substitute(x))" to "print.findFn", I got ds = "x", not "k" from "(k <- findFn('spline', 1))" and from "k" by itself (autoprint) but "x" from "prin...
2007 Oct 11
1
problem to install itunes 7.4.3 with wine 0.9.44
...} not registered err:ole:CoGetClassObject no class object {bb46f03e-7cd2-489f-8f95-bb950f395fdb} could be created for context 0x4 fixme:msi:MSI_GetProductInfo L"VersionString" err:msi:custom_get_thread_return Invalid Return Code 1723 err:msi:ITERATE_Actions Execution halted, action L"InstallPackages" returned 1603 fixme:shell:DllCanUnloadNow stub ------------------------------------------------------------------------ I've read on this page http://appdb.winehq.org/objectManager.php?sClass=version&iId=9185&iTestingId=16028 that it seems to work. Do you have some ideas? Th...
2016 Jun 13
1
[PATCH v2] sysprep: Add --network to enable the network (RHBZ#1345813).
...network is disabled. Try either removing '--no-network' or adding '--network' on the command line."); + prerr_newline () + ); error (f_"%s: command exited with an error") display in @@ -263,7 +268,7 @@ exec >>%s 2>&1 | `InstallPackages pkgs -> message (f_"Installing packages: %s") (String.concat " " pkgs); let cmd = guest_install_command pkgs in - do_run ~display:cmd cmd + do_run ~display:cmd ~warn_failed_no_network:true cmd | `Link (target, links) -> List.iter ( @...
2013 Oct 11
3
Gaussian Quadrature for arbitrary PDF
Hi all, We know that Hermite polynomial is for Gaussian, Laguerre polynomial for Exponential distribution, Legendre polynomial for uniform distribution, Jacobi polynomial for Beta distribution. Does anyone know which kind of polynomial deals with the log-normal, Student抯 t, Inverse gamma and Fisher抯 F distribution? Thank you in advance! David [[alternative HTML version deleted]]
2017 Feb 09
0
What would make R easier to use for you (and sos version 1.4-1 and useR!2017)
...version 1.4-1 of "sos" modified the HTML display so the first few lines describe how to get a package summary. [In particular, "???asdf" opens a page in a web browser that begins with <<"x <- findFn(string = 'asdf')"; For a package summary: "installPackages(x); writeFindFn2xls(x)">>.] *** *** rdocumentation.org *** The web site "rdocumentation.org" provides a completely web-based search capability that can produce a summary by packages. I think this web interface is easier to use than "sos", but the sos...
2017 Jan 09
2
problem with print.generic(x)deparse(substitute(x))
Hi, All: I'm having trouble getting deparse(substitute(x)) inside print.generic to consistently I'm having trouble getting a print.something to work consistently. Consider the following toy example: # Define an object of class 'dum' k <- 1 class(k) <- 'dum' str(k) # as expected # Define print.dum print.dum <- function(x, ...)
2010 Aug 10
1
[Fwd: Re: optimization subject to constraints]
-------------- next part -------------- An embedded message was scrubbed... From: Gildas Mazo <gildas.mazo at curie.fr> Subject: Re: [R] optimization subject to constraints Date: Tue, 10 Aug 2010 15:49:19 +0200 Size: 4924 URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20100810/78862894/attachment.eml>
2014 Nov 02
3
[PATCH] customize: Add --ssh-inject option for injecting SSH keys.
...stomize.ml | 18 +++++++++++ 3 files changed, 101 insertions(+), 2 deletions(-) diff --git a/builder/cmdline.ml b/builder/cmdline.ml index c0584f7..e21d5bb 100644 --- a/builder/cmdline.ml +++ b/builder/cmdline.ml @@ -306,8 +306,8 @@ read the man page virt-builder(1). | `Command _ | `InstallPackages _ | `Script _ | `Update -> true | `Delete _ | `Edit _ | `FirstbootCommand _ | `FirstbootPackages _ | `FirstbootScript _ | `Hostname _ | `Link _ | `Mkdir _ - | `Password _ | `RootPassword _ | `Scrub _ | `Timezone _ | `Upload _ - | `Write _ | `Chmod _ -&gt...
2017 Jul 04
0
Unable to install packages in R: Error in if (any(diff)) { : missing .....
...\Users\anp\Documents SESSIONNAME Console SystemDrive C: SystemRoot C:\Windows TEMP C:\Users\anp\AppData\Local\Temp TMP C:\Users\anp\AppData\Local\Temp USERDOMAIN abril USERNAME anp USERPROFILE C:\Users\anp windir C:\Windows windows_tracing_flags 3 windows_tracing_logfile C:\BVTBin\Tests\installpackage\csilogfile.log > [[alternative HTML version deleted]]
2016 Sep 08
3
Fwd: Re: RSiteSearch, sos, rdocumentation.org, ...?
...if searching all help files > is really helpful anymore. The fastest way I know to do a literature search for anything statistical uses the sos package as follows: 1. docPages <- findFn('search string') or findFn('{search string}') 2. installPackages(docPages) # this installs packages to enable a more complete package summary 3. writeFindFn2xls(docPages) # this creates an Excel file with 3 sheets: a package summary, the findFn table, and the call. 4. Then I open the Excel file, and review the package summar...
2015 May 15
3
[PATCH v2 0/2] customize: Allow --selinux-relabel flag to work on cross-architecture builds.
Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1212807 Since v1: - Combine the virt-builder detection code into virt-customize. - Enables us to delete Architecture and Uname modules completely. Rich.
2014 Nov 03
0
[PATCH] customize: Add --ssh-inject option for injecting SSH keys.
...top_builddir)/customize/customize_run.cmx \ $(top_builddir)/fish/guestfish-uri.o \ diff --git a/builder/cmdline.ml b/builder/cmdline.ml index c0584f7..e21d5bb 100644 --- a/builder/cmdline.ml +++ b/builder/cmdline.ml @@ -306,8 +306,8 @@ read the man page virt-builder(1). | `Command _ | `InstallPackages _ | `Script _ | `Update -> true | `Delete _ | `Edit _ | `FirstbootCommand _ | `FirstbootPackages _ | `FirstbootScript _ | `Hostname _ | `Link _ | `Mkdir _ - | `Password _ | `RootPassword _ | `Scrub _ | `Timezone _ | `Upload _ - | `Write _ | `Chmod _ -&gt...
2019 Oct 15
4
Splitting the large libguestfs repo
I got a little way into this. The two attached patches are preliminary work. My proposed split is: libguestfs.git common -> git submodule libguestfs-common.git generator/ lib/ all language bindings C based tools (eg. virt-df, virt-edit, guestfish) guestfs-tools.git common -> git submodule libguestfs-common.git