Displaying 16 results from an estimated 16 matches for "28199".
Did you mean:
2199
2002 Jul 03
2
Adding text to a plot
...CAN 87.07300 1.3649655
[...]
To add labels on points in a plot I call:
text(x=u[,2]+chw, y=u[,3], labels=levels(u[,1]), adj=0 )
How can I label only the datapoints for 'CAN' and 'AUS'?
Thanks for any help
Patrick
-------------
Patrick Hausmann
Friedrich-Wilhelm Str. 37 - D-28199 Bremen
Tel. +49 421 5980631 - Fax. +49 421 5980632
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body&quo...
2002 Jun 21
1
rbind
...a[2,]/ja[1,])
x <- rbind(x,af)
But this saves only the last value of 'af' in 'x'
> x
ARG AUS
1963 -0.06313723 0.04366118
So, how can I preserve the old values of x?
Thanks a lot
Patrick
-------------
Patrick Hausmann
Friedrich-Wilhelm Str. 37 - D-28199 Bremen
Tel. +49 421 5980631 - Fax. +49 421 5980632
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body&quo...
2002 Jun 09
1
Logical operators
...+ where the variable 'rgdpch' has no missing values.
The result should be:
code;year;rgdpch
ALB;1998;3576
ALB;1960;2345
I tried to solve this with logical operators (==), but without any
success.
Thanks for your help!
Patrick
-------------
Patrick Hausmann
Friedrich-Wilhelm Str. 37 - D-28199 Bremen
Tel. +49 421 5980631 - Fax. +49 421 5980632
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body&quo...
2008 Jun 13
1
How many imap processes per user
...info at dem 29180 29179 0 10:52:05 ? 0:00 rawlog /opt/csw/
libexec/dovecot/imap
info at dem 29635 15780 0 10:55:35 ? 0:00 imap
info at dem 29642 29635 0 - ? 0:00 <defunct>
info at dem 28477 15780 1 10:47:37 ? 0:02 imap
info at dem 28200 28199 0 - ? 0:00 <defunct>
info at dem 29942 29941 0 10:58:09 ? 0:00 rawlog /opt/csw/
libexec/dovecot/imap
info at dem 28597 28596 0 - ? 0:00 <defunct>
info at dem 28330 28329 0 - ? 0:00 <defunct>
info at dem 25610 25...
2023 Nov 02
1
Updating OpenSSL from 1.x to 3 breaks kinit
02.11.2023 18:04, MATYAS, Tibor via samba:
> Dear all,
>
> updating openssl from 1.1.x to 3.x on our gentoo systems (recompiled everything against the new openssl!)
> breaks kinit:
FWIW, most distributions switched to openssl3 quite some time ago.
Eg, current libssl in Debian is of version 3.0.11-1~deb12u1.
You did not provide any other useful info. Two of the most important
2023 Nov 02
2
Updating OpenSSL from 1.x to 3 breaks kinit
...ul info.? Two of the most important
> missing pieces: do you build samba with the recommended heimdal kerberos
> or mit-krb5?? And what's your DC?
>
> /mjt
>
--------------------------------------------------
DSI Aerospace GmbH
Sitz der Gesellschaft: Otto-Lilienthal-Str. 1, D-28199 Bremen, Germany
Web: http://www.dsi-as.de
Geschaeftsfuehrer: Dr.-Ing. Christian Dierker
M. Sc. Elias Hashem
Handelsregister: HRB 17726, Amtsgericht Bremen
Umsatzsteuer-Identifikationsnummer: DE 192 681 774
--------------------------------------------------
2002 Jun 14
1
data.frame - transform
...MEX.gdp BOL.gdp ITA.gdp
1950 2 4 45
1951 5 12 2
Right now I have this code (better - no code):
country.label<-names(table(pwt6$country))
result<-data.frame(year=NULL)
for(i in country.label)
?
Thanks for any help,
Patrick
-------------
Patrick Hausmann
Friedrich-Wilhelm Str. 37 - D-28199 Bremen
Tel. +49 421 5980631 - Fax. +49 421 5980632
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body&quo...
2002 Jun 28
1
Transpose a dataframe
...BDI BEL
1960 7493 10484 7438 587 8223
1961 7733 10342 7808 502 8638
1962 7581 10809 7938 555 9021
1963 7108 11357 8212 608 9311
I'm trying the 'reshape' and 't' command, but still failed.
Thanks for any help,
Patrick
-------------
Patrick Hausmann
Friedrich-Wilhelm Str. 37 - D-28199 Bremen
Tel. +49 421 5980631 - Fax. +49 421 5980632
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body&quo...
2002 Jun 30
0
Loop and 3D-Densityplot
...7292.058
5 1954 7849.489 4554.899 6028.685 7857.842 7371.312
To plot the density for year 1950 I use:
plot(density(as.matrix(k[1,2:6])))
But how can I make a 3D-Densityplot for the years
1950-1954?
Again, thanks for your help
Patrick
-------------
Patrick Hausmann
Friedrich-Wilhelm Str. 37 - D-28199 Bremen
Tel. +49 421 5980631 - Fax. +49 421 5980632
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body&quo...
2023 Nov 02
2
Updating OpenSSL from 1.x to 3 breaks kinit
...4 8: EVP_CipherInit_ex einit
openssl list -cipher-algorithms | grep -i RC4
? RC4
? RC4-40
? RC4-HMAC-MD5
unfortunately no solution found so far.
Thanks in advance, Tibor
--------------------------------------------------
DSI Aerospace GmbH
Sitz der Gesellschaft: Otto-Lilienthal-Str. 1, D-28199 Bremen, Germany
Web: http://www.dsi-as.de
Geschaeftsfuehrer: Dr.-Ing. Christian Dierker
M. Sc. Elias Hashem
Handelsregister: HRB 17726, Amtsgericht Bremen
Umsatzsteuer-Identifikationsnummer: DE 192 681 774
--------------------------------------------------
2002 May 12
1
"Unexplained error code xxx" in rsync-2.5.5
...when WIFEXITED(*status) returns true.
Else, WIFSIGNALED(*status) could be true, in which case the process was
terminated by a signal. One has to extract the signal number using
WTERMSIG(*stat)... and so on. There is also WIFSTOPPED() and
WIFCONTINUED().
(mk)
--
Matthias Kurz; Fuldastr. 3; D-28199 Bremen; VOICE +49 421 53 600 47
>> Im pr?motorischen Cortex kann jeder ein Held sein. (bdw) <<
2023 Nov 02
1
Updating OpenSSL from 1.x to 3 breaks kinit
On Thu, 2023-11-02 at 16:04 +0100, MATYAS, Tibor via samba wrote:
> Dear all,
>
> updating openssl from 1.1.x to 3.x on our gentoo systems (recompiled
> everything against the new openssl!)
> breaks kinit:
>
> kinit administrator at xxxx
> administrator at xxxx's Password:
> kinit: rc4 8: EVP_CipherInit_ex einit
>
> kinit -F -k -t /etc/dhcpduser.keytab -c
2002 May 26
3
Read a Time Serie CSV
...#39;t plot a single variable by name.
> plot(oecd96$gdpcausb)
Error in xy.coords(x, y, xlabel, ylabel, log) :
x and y lengths differ
This works:
plot(oecd96[,1])
What's my fault ?
Thanks for any help,
Patrick Hausmann
-------------
Patrick Hausmann
Friedrich-Wilhelm Str. 37 - D-28199 Bremen
Tel. +49 421 5980631 - Fax. +49 421 5980632
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body&quo...
2002 Jul 03
3
latex
Hi,
i'm a newbie with latex and postscript but recognize
the power in combination wit R .
...current i don't now how i have to "inform" R1.5.0(patched) about my
MikeTex installation on windows 2000 and get following
latex(table)
Warning messages:
1: cat not found
2: cd not found
3: xdvi not found
P.S. maybe i must define in Rprofile something ???
Thanks for help and
2011 Sep 09
0
Wine release 1.3.28
...tart
28101 wininet ftp tests slow
28103 gdi32 font.ok fails if sun-java6-fonts installed, does nothing otherwise?
28122 unable to start Intl.cpl (Regional Settings properties) -- unimplemented function SETUPAPI.dll.pSetupMalloc
28157 Jedi Knight demo crashes after the opening sequence
28199 Installation of vcrun6 causes undefined function _set_printf_count_output
28207 Caesar III crashes in dsound
28214 Eurofighter Typhoon crashes after starting
28230 F.E.A.R. 3 crashes with unimplemented msvcp90.dll.?_Getcat@?$ctype at D@std@@SAIPAPBVfacet at locale@2 at PBV42@@Z
28233 N...
2005 Jan 25
29
Write-up on RoR + XUL Sample
Hi Folks,
Just a quick message saying that, after much demand, I wrote a quick
write-up for the RoR + XUL thing I did yesterday:
http://www.zedshaw.com/blog/programming/ruby_xul.html
It lays out the few simple things I did, has a bit of rant on an
unrelated topic, and other stuff but it''s short still.
On a related note, I''d like to thank "xal" on IRC for reminding