Displaying 20 results from an estimated 24 matches for "gau".
Did you mean:
au
2019 Mar 26
1
IMAP coredumps for one user
FreeBSD-12
Dovecot-2.3.5
I am having problems with one use
Mar 25 21:30:12 imap(gau.mon at crownkenya.com)<91364><U7qCZO+ECfCaRh6E>:
Fatal: master: service(imap): child 91364 killed with signal 6 (core dumped)
Mar 25 21:30:14 imap(gau.mon at crownkenya.com)<2381><moHYZO+EDvCaRh6E>:
Fatal: master: service(imap): child 2381 killed with signal 6 (core dumped)...
2005 Jun 27
1
problem with postcript() and umlauts
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
I am running R 2.01 on SuSE 9.2 and I use GNU-Emacs and ESS.
When using umlauts like ?? ?? ?? ?? for e.g. plot titles , I enter them
directly in the code, like
plot(seq(from=-4,to=4,length=100),dnorm(seq(from=-4,to=4,length=100)),main="Gau??-Verteilung")
I get a dotted box just after the "Gau" and before the "??" in the title.
Using the postscript device
postscript()
plot(seq(from=-4,to=4,length=100),dnorm(seq(from=-4,to=4,length=100)),main="Gau??-Verteilung")
dev.off()
I get two warning message...
2015 Aug 04
2
Duda interpolación (package ' gstat ')
...88: singular matrix in function Usolve()
"lufactor.c", line 208: singular matrix in function m_inverse()
Error in predict.gstat(g, newdata = newdata, block = block, nsim = nsim, :
m_inverse
In addition: Warning message:
In fit.variogram(vg.aux, model = vgm(psill = 0.1, model = "Gau", :
Warning: singular model in variogram fit
Mi función del variograma es :
v.fit <- fit.variogram(vg.aux, model=vgm(psill=0.15, model='Gau', range=5000,
nugget=0.05))
¿Alguien me podría ayudar?
Gracias de antemano.
Un saludo,...
2015 Aug 06
2
Duda interpolación (package ' gstat ')
...t; "lufactor.c", line 208: singular matrix in function m_inverse()
> > Error in predict.gstat(g, newdata = newdata, block = block, nsim = nsim, :
> > m_inverse
> > In addition: Warning message:
> > In fit.variogram(vg.aux, model = vgm(psill = 0.1, model = "Gau", :
> > Warning: singular model in variogram fit
> >
> >
> > Mi funci?n del variograma es :
> > v.fit <- fit.variogram(vg.aux, model=vgm(psill=0.15, model='Gau', range=5000,
> > nugget=0.05))
>...
2008 Aug 05
4
LIDAR Problem in R (THANKS for HELP)
...er of points (X;Y; Z value) to create a very high resolution
map of DEM and VEGETATION. The problem is the memory, but we can use a
cluster-linux network to improve the capacity of R
2. Is it possible to improve the memory capacity?
3. The data has a trend and the qqplot shows a Gaussian trend. Is it
possible to normalize the data (i.e. with log)?
4. When I use this R code ?subground.uk = krige(log(Z)~X+Y, subground,
new.grid, v.fit, nmax=40)? to appear an Error massage: Error in eval(expr,
envir, enclos) : oggetto "X" non trovato
I send you a report an...
2006 Nov 24
2
plot() and Jpeg() increase font size and resolution
...linux.
I can change fontsize with cex.axis in a normal plot, so I presume it
has to do with plotting the variogram model. Any help on how to increase
the font size and resolution would be appreciated?
R-calls:
v1<-variogram(log(z)~x+y, loc=coordinates(shp1),data=shp1)
m1<-vgm(0.0175, "Gau", 200000,0.052)
jpeg(file="LOTPLAN_variogram_mod.jpg", bg="white", res=300,
pointsize=16, width=1200, height=1200, quality=100)
plot(v1,plot.number=F, model=m1, ylim=c(0.04,0.08), col="black",
cex.axis=1.5)
dev.off()
Thanks Herry
Dr Alexander Herr
Spatial an...
1999 Jul 20
1
Root Access rights after smbmount
...1 1970 archiv
This doesn't matter to root but to all users of user group 200 which I wanted to
grant access to the share. I saw other messages describing this error before but
they got no response. Is there a solution for this problem?
Thanks for every hint in advance.
Greetings,
Christian Gau
2006 Nov 27
2
[R-sig-Geo] plot() and Jpeg() increase font size and resolution
...ith cex.axis in a normal plot, so I presume it
> has to do with plotting the variogram model. Any help on how to
> increase the font size and resolution would be appreciated?
>
> R-calls:
> v1<-variogram(log(z)~x+y, loc=coordinates(shp1),data=shp1)
> m1<-vgm(0.0175, "Gau", 200000,0.052)
>
> jpeg(file="LOTPLAN_variogram_mod.jpg", bg="white", res=300,
> pointsize=16, width=1200, height=1200, quality=100)
>
> plot(v1,plot.number=F, model=m1, ylim=c(0.04,0.08), col="black",
> cex.axis=1.5)
>
> dev.off()
>...
2017 Jul 13
0
Question on Simultaneous Equations & Forecasting
...ave not touched the system.fit package for quite some time, but to solve your problem the following two pointers might be helpful:
1) Recast your model in the revised form, i.e., include your identity directly into your reaction functions, if possible.
2) For solving your model, you can employ the Gau?-Seidel method (see https://en.wikipedia.org/wiki/Gauss%E2%80%93Seidel_method).
This has not only the advantage of generating forecasts, in terms of your exogenous variables, but you can also compute 'dynamic ex post' forecasts. This is probably the most powerful testing for dynamic simulta...
2017 Jul 13
2
Question on Simultaneous Equations & Forecasting
Frances,
I would not advise Gauss-Seidel for non linear models. Can be quite tricky, slow and diverge.
You can write your model as a non linear system of equations and use one of the nonlinear solvers.
See the section "Root Finding" in the task view NumericalMathematics suggesting three packages (BB, nleqslv and ktsolv...
2017 Jul 12
2
Question on Simultaneous Equations & Forecasting
Hello,
I have estimated a simultaneous equation model (similar to Klein's model) in R using the system.fit package.
I have an identity equation, along with three other equations. Do you know how to explicitly identify the identity equation in R?
I am also trying to forecast the dependent variables in the simultaneous equation model, while incorporating the identity equation in the
2009 Feb 16
1
Winbind-Problem Samba 3.2.8 on AIX 5.3.9
...and level 10 logs are available for smbd, winbindd and 1 client system (that tried to connect) and can be provided.
Kind regards
Dr. Volker Arendt
--------------------------------------------------------------------------
Dr. Volker Arendt mailto:arendt@wiwi.uni-wuppertal.de
Gau?str. 20 Tel : +49(202)4392449
42097 Wuppertal, Deutschland Fax: +49(202)4393959
Bergische Universit?t Wuppertal Wirtschaftswissenschaft (FBB)
--------------------------------------------------------------------------
2005 Oct 18
1
ppc
Hello,
I would like to try CentOS on a PPC machine (a Pegasos
http://www.pegasosppc.com ).
http://www.centos.org/modules/news/article.php?storyid=65 says, that a
boot iso file can be downloaded, but I get a 404 error for
http://beta.centos.org/centos/4.0beta/isos/ppc/
Could you please point me to the right URL? Thanks, bye,
Peter
2010 Mar 11
1
VAR with contemporaneous effects
Hi,
I would like to estimate a VAR of the form:
Ay_t = By_t-1 + Cy_t-2 + ... + Dx_t + e_t
Where A is a non-diagonal matrix of coefficients, B and C are matricies of
coefficients and D is a matrix of coefficients for the exogenous variables.
I don't think the package {vars} can do this because I want to include
contemporaneous cross-variable impacts.
So I want y1_t to affect y2_t and I
2009 Nov 10
2
Samba 3.4.2 Winbind problem IDMAP GID range full
...2009/11/10 10:52:06, 1] winbindd/idmap_tdb.c:445(idmap_tdb_allocate_id)
Fatal Error: GID range full!! (max: 499999)
Regards
Dr. Volker Arendt
--------------------------------------------------------------------------
Dr. Volker Arendt mailto:arendt at wiwi.uni-wuppertal.de
Gau?str. 20 Tel : +49(202)4392449
42097 Wuppertal, Deutschland Fax: +49(202)4393959
University of Wuppertal Business Economics (FBB)
--------------------------------------------------------------------------
2017 Jul 13
0
Question on Simultaneous Equations & Forecasting
...--Urspr?ngliche Nachricht-----
Von: Berend Hasselman [mailto:bhh at xs4all.nl]
Gesendet: Donnerstag, 13. Juli 2017 10:53
An: OseiBonsu, Frances
Cc: Pfaff, Bernhard Dr.; r-help at r-project.org
Betreff: [EXT] Re: [R] Question on Simultaneous Equations & Forecasting
Frances,
I would not advise Gauss-Seidel for non linear models. Can be quite tricky, slow and diverge.
You can write your model as a non linear system of equations and use one of the nonlinear solvers.
See the section "Root Finding" in the task view NumericalMathematics suggesting three packages (BB, nleqslv and ktsolv...
2017 Jul 13
1
Question on Simultaneous Equations & Forecasting
...nd Hasselman [mailto:bhh at xs4all.nl]
> Gesendet: Donnerstag, 13. Juli 2017 10:53
> An: OseiBonsu, Frances
> Cc: Pfaff, Bernhard Dr.; r-help at r-project.org
> Betreff: [EXT] Re: [R] Question on Simultaneous Equations & Forecasting
>
> Frances,
>
> I would not advise Gauss-Seidel for non linear models. Can be quite tricky, slow and diverge.
>
> You can write your model as a non linear system of equations and use one of the nonlinear solvers.
> See the section "Root Finding" in the task view NumericalMathematics suggesting three packages (BB, nle...
1999 Nov 11
2
Display Pictures in R
Hi,
how can I import pictures in R (e.g. bmp or tiff) and display them in an X11?
Thanks
Sigurd
-------------- next part --------------
An HTML attachment was scrubbed...
URL: https://stat.ethz.ch/pipermail/r-help/attachments/19991111/9923e65c/attachment.html
2006 Nov 20
2
problem with loop to put data into array with missing data for some files
...ut into an data.out array
would be NA) and moving onto the next year/month in the loop to carry on filling
data.out with real precipitation data.
The situation so far:
I downloaded 50 years worth of GRIB data files from the NCEP data site
http://nomad3.ncep.noaa.gov/pub/reanalysis-1/month/grb2d.gau/
I then created a loop in R to read each month of each of the 50 years worth of
files and only extract the precipitation records using wgrib and grep as show in
the code at the end of this message. I had to use grep to extract the PRATE
records each time, as unfortunately with these grib files...
2006 Nov 20
3
problem with loop to put data into array with missing data forsome files
...gt;would be NA) and moving onto the next year/month in the loop to carry
on
>filling
>data.out with real precipitation data.
>
>The situation so far:
>I downloaded 50 years worth of GRIB data files from the NCEP data site
>http://nomad3.ncep.noaa.gov/pub/reanalysis-1/month/grb2d.gau/
>
>I then created a loop in R to read each month of each of the 50 years
>worth of
>files and only extract the precipitation records using wgrib and grep
as
>show in
>the code at the end of this message. I had to use grep to extract the
>PRATE
>records each time, as unfo...