Displaying 20 results from an estimated 22 matches for "fgh".
Did you mean:
fg
2013 Aug 02
4
Internalization of help pages
Is it possible to translate help files? I see there are some localization
options for GUI, but not for help. I think this would be really helpful for
users who don't have English as their primary language.
Because all the online help is created from text files, it should be not
that difficult to maintain different language versions (e.g. to mark them
as not valid when primary documentation in
2013 Aug 02
4
Internalization of help pages
Is it possible to translate help files? I see there are some localization
options for GUI, but not for help. I think this would be really helpful for
users who don't have English as their primary language.
Because all the online help is created from text files, it should be not
that difficult to maintain different language versions (e.g. to mark them
as not valid when primary documentation in
2000 Feb 07
1
demo(nlm) error under R 0.99.0
I can't seem to get the demo(nlm) to run under R version 0.99.0
Anyone know a solution?
> fgh <- function(x) {
gr <- function(x1, x2) {
c(-400 * x1 * (x2 - x1 * x1) - 2 * (1 - x1), 200 * (x2 -
x1 * x1))
}
h <- function(x1, x2) {
a11 <- 2 - 400 * (x2 - x1 * x1) + 800 * x1 * x1
a21 <- -400 * .... [TRUNCATED]
> nlm(fgh, c(-1.2...
2008 Dec 16
1
renaming factor-labels / add factors etc.
...ange a defined factor-variable?
Like adding levels, renaming existing levels or merge several levels
of a factor to one level?
For example; following factor-variable is given:
x <- factor(c("xyz1", "abc1", "xyz2", "abc2"))
How can I add the level fgh?
And how can I merge "xyz1" and "xyz2" to one level?
And how can I change the name?
Thanks for any help!
2009 Nov 24
2
Re moving white space help
Hi there
I am trying to remove the white space and replace it with nothing but didnt
have any luck with that
x <- and fgh-
i can replace the comma using gsub
gsub("\\-","",x)
but i cant replace the white space with nothing.
Ramya
--
View this message in context: http://old.nabble.com/Removing-white-space-help-tp26503431p26503431.html
Sent from the R help mailing list archive at Nabble.com.
2002 Aug 29
3
2 questions
Hi all,
I am using R1.5.0 under Unix,
I have a couple of questions here.
1. My program is running out of memory. I am writing a program to grow a
list of trees using rpart() on a subset of a large dataset(5807x693) with
a different response for every tree. I saw that after each tree was
constucted, 116 MB of data was being added to the Vcells. I have no idea
what this data is. My dataset is
2017 Mar 03
2
Bug in nlm()
Dear all,
I have found a bug in nlm() and would like to submit a report on this.
Since nlm() is in the stats-package, which is maintained by the R Core team, bug reports should be submitted to R's Bugzilla. However, I'm not a member of Bugzilla. Could anyone be so kind to add me to R's Bugzilla members or let me know to whom I should send the bug report?
Thank you in advance.
Kind
2007 Mar 02
2
nlm() problem : extra parameters
...2*e)),2,2)
return(f)
}
> nlm(derfs4,c(-3.9,.64),hessian=T,print.level=2,x=x,y=y,n=n)
Error in choose(n, y) : argument "n" is missing, with no default
>
I tried a variety of other ways too. When I got it to work it did not
converge in 100 iterations ;rather like the fgh example given on the lme
help page.
Mervyn
[[alternative HTML version deleted]]
______________________________________________
R-help at stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and...
1998 Sep 08
0
SysV interface script
...tical redirection of output; lpsched treats any
# output from this script as a problem with the request, and kills it,
# exit codes notwithstanding....
#
# In a previous life, it was distributed with the SAMBA software, but
# has since been hacked to the point of non-recognition.
#
# Dave Horsfall, FGH.
#
# clear out the unwanted parameters
copies=$4 # We want this one, but.
shift; shift; shift; shift; shift
pw="" # We *must* supply a password
smbclient=/usr/local/samba/bin/smbclient
lptell=/var/spool/lp/bin/lp.tell # Regrettably necessary
ping=/usr/sbin/ping
printer=`basename $0`...
2013 Jul 29
0
nut package with Riello UPS support
On Jul 29, 2013, at 6:43 AM, Pavel Potcheptsov (EKTOS) wrote:
> Hello list,
> I have explored https://github.com/networkupstools/nut repository
> and found that Riello UPS added into list of supported UPS.
> But current package for most distribution it's nut-2.6.5 which
> doesn't have Riello's models.
> Do we need to wait next upcoming nut release to get start with
2013 Jul 29
3
nut package with Riello UPS support
Hello list,
I have explored https://github.com/networkupstools/nut repository
and found that Riello UPS added into list of supported UPS.
But current package for most distribution it's nut-2.6.5 which
doesn't have Riello's models.
Do we need to wait next upcoming nut release to get start with Riello?
I tried to install from source but stuck:
# git clone
2005 Dec 04
1
Understanding nonlinear optimization and Rosenbrock's banana valley function?
...my "nlm." still had
not converged after 100 iterations.
What might be done to improve the performance of something like "nlm"
without substantially increasing the overhead for other problems?
Thanks.
spencer graves
#############################
nlm. <- function(f=fgh, p=c(-1.2, 1),
gradtol=1e-6, steptol=1e-6, iterlim=100){
# R code version of "nlm"
# requiring analytic gradient and hessian
#
# Initial evaluation
f.i <- f(p)
f0 <- f.i+1
# Iterate
for(i in 1:iterlim){
df <- attr(f.i, "gradient")
# Gradient sufficien...
2016 Oct 04
1
error handling in strcapture
It is also not catching the cases where the number of capture expressions
does not match the number of entries in proto. I think all of the
following should give an error about the mismatch.
> strcapture("(.)(.)", c("ab", "cde", "fgh", "ij", "lm"),
proto=list(A="",B="",C=""))
A B C
1 a b cd
2 d fg f
3 ij i j
4 l m ab
Warning message:
In matrix(as.character(unlist(str)), ncol = ntokens, byrow = TRUE) :
data length [15] is not a sub-multiple or multiple of the...
2005 Mar 08
0
Sip 400 bad request - broadvoice error
...603
Call-ID: 232eaadc77474b34350ff0d402de26bf@sip.broadvoice.com
CSeq: 107 INVITE
Content-Length: 0
My SIP.conf is:
register =>
<PHONENUMBER>@sip.broadvoice.com:<SECRET>:<PHONENUMBER>@sip.broadvoice.com
[zachphone]
type=friend
username=zachphone@192.168.55.254
password=.asd.fgh.
host=dynamic
dtmfmode=inband
defaultip=192.168.55.65
mailbox=12
callerid="Zach/Caribou Insurance" <303.557.0057x12>
context=sip ;your context in extensions.conf
[sip.broadvoice.com]
type=friend
username=3035570057
fromuser=__________
authname=__________
fromdomain=sip.broadvoice.c...
1998 Aug 11
0
Parallel setups
...nix
bigot)...
In other words, I want to advertise the same workgroup, say "X", appearing
to come from machines "Y" and "Z", whilst being able to pick between them.
--
Dave Horsfall VK2KFU dave@geac.com.au Ph: +61 2 9978-7493 Fx: +61 2 9978-7422
Geac Computers P/L (FGH Division) 2/57 Christie St, St Leonards 2065, Australia
1998 Nov 07
1
SAMBA digest 1867
...u/listproc
>Topics covered in this issue include:
>
> 1) Re: nis homedir troubles
> by Jeremy Allison <jallison@cthulhu.engr.sgi.com>
> 2) calling all Samba vendors!
> by Andrew Tridgell <tridge@samba.anu.edu.au>
> 3) Win98 and CHAP
> by Dave Horsfall <dave@fgh.geac.com.au>
> 4) NT; Samba logs user on as 'nobody' on reboot?
> by E Kovarski <edwardk@openetix.com>
> 5) Netlogon problems
> by Miquel Bonastre <miquel@fib.upc.es>
> 6) new web pages
> by Andrew Tridgell <tridge@samba.anu.edu.au>
> 7) RE: cha...
2006 May 24
10
Ferret slow after a while
I''m building a new index from scratch based on a number of documents
stored in a database loaded using my Rails env (using Ruby Ferret 0.9x
(installed today with Gem) on Windows). At first everything goes nice
but after a number of documents it starts to go slower and slower until
it grinds to a halt (at least feels like it).
Am I doing something wrong? Is there some way to work
2020 Apr 30
2
[PATCH 0/1] Add uvirtio for testing
On Wed, Apr 29, 2020 at 08:59:18PM -0700, lepton wrote:
> On Wed, Apr 29, 2020 at 4:58 AM Gerd Hoffmann <kraxel at redhat.com> wrote:
> >
> > > 3) Need to be verbose on how the vring processing work in the commit log of
> > > patch 1
> >
> > Ecven better a file documenting the interface somewhere in
> > Documentation/
> I put a uvirtio-vga.c
2013 Jul 29
3
nut package with Riello UPS support
Thanks for you reply.
I have installed asciidoc with "pkg_add asciidoc"
And it returns something:
# asciidoc fgh
asciidoc: FAILED: input file /root/nut/fgh missing
# which
asciidoc
/usr/local/bin/asciidoc
Maybe there is any way to skip building man pages.
This is not the such main thing as a new devices support.
I also could built the driver that I need
# make riello_ser
but I don't know is there way to...
2016 Oct 04
2
error handling in strcapture
I noticed a problem in the strcapture from R-devel (2016-09-27 r71386),
when the text contains a missing value and perl=TRUE.
{
# NA in text input should map to row of NA's in output, without
warning
r9p <- strcapture(perl = TRUE, "(.).* ([[:digit:]]+)", c("One 1", NA,
"Fifty 50"), data.frame(Initial=factor(), Number=numeric()))
e9p <-