Displaying 20 results from an estimated 21 matches for "mounding".
Did you mean:
rounding
2015 Jun 08
0
New R package kwb.hantush (0.2.1): calculation of groundwater mounding beneath an (stormwater) infiltration basin
Dear R users,
It is a pleasure for me to announce the availability of the new package kwb.hantush (0.2.1)? on CRAN. Its objective is the calculation of groundwater mounding beneath an (stormwater) infiltration basin by solving the Hantush (1967) equation. For checking the correct implementation of the algorithm the R modelling results were cross-checked against alternative models assessed in Carleton (2010) by using the same model parameterisation.
References:
[1]...
2015 Jun 08
0
New R package kwb.hantush (0.2.1): calculation of groundwater mounding beneath an (stormwater) infiltration basin
Dear R users,
It is a pleasure for me to announce the availability of the new package kwb.hantush (0.2.1)? on CRAN. Its objective is the calculation of groundwater mounding beneath an (stormwater) infiltration basin by solving the Hantush (1967) equation. For checking the correct implementation of the algorithm the R modelling results were cross-checked against alternative models assessed in Carleton (2010) by using the same model parameterisation.
References:
[1]...
2003 Apr 23
1
R scripting patches for R-1.7.0
I've patched R so that it can be used as a scripting language, i.e.
you can (on Unix-like systems) write files containing R code
and execute them non-interactively, e.g.:
#!/usr/local/lib/R/bin/R.bin --script
cat("Hello World!\n")
I've updated the patches for R-1.7.0; if you're interested in the
patches, e-mail me at mckay@gmr.com, and I'll send them to you.
--
2002 Apr 11
3
Mods that allow R scripts
I've hacked R so that it can be used to write shell and/or
CGI scripts, e.g. "hello world" can be written as:
#!/usr/local/lib/R/bin/R.bin --script
cat("Hello, World!\n");
The mods required to enable this aren't particularly major.
(Adds about 70 lines of code, IIRC.) Anyone else interested
in adding this to the R core?
--
Neil D. McKay, Mail Code 480-106-359
2013 Sep 13
1
inconsistency/bug in recordPlot/replayPlot
Hey all,
I've run accross what seems to be a bug in the recordPlot/replayPlot
functionality (or at least the lack of a feature which seems pretty
reasonable to expect to be there)
When drawing to a file-based graphics device (I tested with png()), the
file resulting from calling replayPlot on a recordedplot object does not
contain an identical image to that captured by the same graphics
2004 Jul 09
3
Can R read data from stdin?
Is there anyway I can write a script which feed input datasource from stdin
and let R process it (maybe frequency report) then output the report to
stdout?
I can't seem to find much info on documentation or FAQ on this topic.
Thanks!
Soichi Hayashi
**********************************************************************
The information contained in this communication is
confidential,
2004 Apr 08
0
Discrete Choice Modeling modules for R??
To all,
Does anyone know whether there are any
Discrete Choice Modeling modules for R??
Thanks, Charlie
-------------------------
Charles H. Rosa, Ph.D.
Staff Research Engineer
General Motors Corporation
R&D and Planning
Mail Code 480-106-359
30500 Mound Rd
Warren, MI 48090-9055
Tel/work/cell: +1 248 670-8389
Fax/work: +1 586 986-0574
2006 Aug 01
2
Puppet in Fedora Extras
Puppet has been in Fedora Extras for the last couple of weeks or so; I
just forgot to post about that. With that, there is no need to use my
personal repo at people.redhat.com anymore; your standard yum
configuration should find it.
The current version is 0.18.3; I just built 0.18.4 for Extras, but it
will be a day or two before it shows up on a mirror near you.
David
2005 Mar 07
0
cannot list contents of share: kernel: smb_proc_readdir_long: error=-2, breaking
Dear All,
We've been running samba successfully in our environment for some months.
Last week we noticed that the list command when
run from any of our linux hosts against a share on a windows host no longer
works.
The specifics.
Windows 2000 domain with ddns, dhcp etc all fully operational.
Windows 2000 sp4 file server
Fedora Core 2 Linux hosts with samba 3.0.10
The Fedora hosts have a
2003 Oct 16
1
R scripting patches for R-1.8.0
I've updated my scripting patches to R-1.8.0. These patches
allow you to write shell scripts in R (at least on *nix systems)
by putting
#!/path/to/R.bin --script
on the first line of the script file. If you're interested
in the patches, e-mail me at
mckay@gmr.com
--
Neil D. McKay, Mail Code 480-106-359 Phone: (586)986-1470 (GM:8-226-1470)
Manufacturing Systems Research Lab
2013 Jul 11
1
Standardize GLS coefficients in R
Hello,
I have estimated the coefficients for my model using the 'pggls' function
from the 'plm' package. Now I want to see the relative influence of those
X's. How can some please tell me how to standardize those my results in R?
Thank you!
--
View this message in context: http://r.789695.n4.nabble.com/Standardize-GLS-coefficients-in-R-tp4671371.html
Sent from the R help
2008 May 28
1
Nessus test issues with open shares
Hi,
My name is Joseph Villa, I'm new to the message boards and I'm also new to
Samba. I just got an e-mail back on our Nessus scans.. Here are the 2 that
are relivant..
1.) The remote host has accessible LOGS$ share.
ScriptLogic creates this share to store the logs, but does not properly
set the permissions on it. As a result, anyone
can use it to read the remote logs.
Solution:
2007 May 08
2
Moving a Centos 5 install to another disk
I want to get Centos 5 on my notebook, at minimal risk.
I want to install it on a clean drive, make sure it 'works', the delete
everything but /home (which is on a separate partition) from the Centos
4 drive and copy the Centos 5 over.
Any 'caviats'? I would first tar up the Centos 4 stuff before putting
my foot into it.
To what extent do I need to have the same drive
2010 Jun 10
1
Wishlist for icecast 2.3.x
Based on icecast 2.3.2 (openbsd 4.5 package)
Inactive Mount-Point display:
<mount>'s that have a fallback defined and have currently no source, will appear in status.xsl, after a signal HUP (kill -s 1) while the fallback-mount is active (could also be a mp3 file). This could also happen by properly killing icecast and restarting, and where the source (ices in my case) is reconnectin
2006 Sep 14
1
attributes of S4 objects
I am having a bit of a struggle deciding when to use attributes with
S4 objects. Clearly the 'class' attribute will always be present.
But it is not clear to me whether the architects of the methods
package intend that other attributes, such as 'names', will still be
used when the S4 implementation is complete.
I notice that, when you create a formal object from an
2007 Mar 15
13
puppet standlone hanging when ran via init.d
Hi,
I''ve just changed my debian preseed configuration to install the debian
unstable package of puppet v0.22.1. As part of the preseed I have a late
command that clobbers the /etc/init.d/puppet file into using the puppet
standalone program and not the puppetd (as this is what I''m using). Since
the upgrade to 0.22.1 every boot hangs during the initd. Going into
standalone mode
2006 Dec 21
5
cft through changes (new tool based on puppet)
I''ve started working on a new tool that should help with modifying the
configuration of a system under the control of puppet. The tool is
called cft (pronounced ''sift'') and is inspired by Gnome''s Sabayon[1] in
taht it watches how an admin changes a system and spits out a puppet
manifest based on its observations.
Cft''s website is
2007 May 01
1
The unbelivable Civilizations of the World
The unbelivable Civilizations of the
World<http://mega-structures.blogspot.com/2007/03/unbelivable-civilizations-of-world.html>
The unbelivable Civilizations of the World
<http://mega-structures.blogspot.com/>
<http://mega-structures.blogspot.com/>
''Chaco Canyon Indian ruins, NM, circa 1060, The Center of
...<http://mega-structures.blogspot.com/>
2007 Feb 06
31
Removing circular dependant RPM files with Package.
Hello,
I just attempted to remove both the ypbind and the yp-tools packages using the package parameter with yum. As it turns out, both of these packages depend on each other.
Is there a way of forcing package removal and, if there is not, is there a way of making all packages to be removed be collapsed into the same yum command? Either of these solutions would solve the problem with the
2007 Jan 04
10
New Feature: Graphing
Hi all,
One of the major new features in the upcoming release is that Puppet
now uses a graph library internally to handle resource
relationships. The big benefit to all of you is that you can use
this library to turn these graphs into images.
The trick, right now, is adding --graph when you run puppetd. This
creates .dot files, which can then be interpreted by the