search for: anzahl

Displaying 20 results from an estimated 23 matches for "anzahl".

Did you mean: anal
2005 Oct 13
3
aggregate slow with many rows - alternative?
...know of other functions that I could use? Thanks, Hans-Peter -------------- dat <- data.frame( Datum = c( 32586, 32587, 32587, 32625, 32656, 32656, 32656, 32672, 32672, 32699 ), FischerID = c( 58395, 58395, 58395, 88434, 89953, 89953, 89953, 64395, 62896, 62870 ), Anzahl = c( 2, 2, 1, 1, 2, 1, 7, 1, 1, 2 ) ) f <- function(x) data.frame( Datum = x[1,1], FischerID = x[1,2], Anzahl = sum( x[,3] ), Cnt = dim( x )[1] ) t.a <- do.call("rbind", by(dat, dat[,1:2], f)) # slow for 33'000 rows t.a <- t.a[order( t.a[,1], t.a[,2] ),] # show data dat...
2007 Oct 04
2
plot from source file
...ybe someone can help with the following problem: I have a source file containing the following code for plotting: pdf(file = 'data/mario/boxplot.pdf') bwplot(sig100 ~ target | group, data = fish, main = 'Boxplot der Signale in 100 Zellen nach Gruppe', xlab = '', ylab = 'Anzahl der Signale') dev.off() pdf(file = 'data/mario/xyplot.pdf') xyplot(sig100 ~ target | group, data = fish, main = 'Signale in 100 Zellen nach Gruppen', xlab = '', ylab = 'Anzahl der Signale', panel = function(x,y, ...) { panel.grid(h = -1, v = -1) panel.xyplo...
2001 May 15
3
box around a barplot
Hi, is it possible to draw a box around the following barplot; using "box=TRUE" won't work. ---------- pc<-c(1,2,5,29,27) barplot(pc,ylim=c(0,30),yaxs="r",xaxs="r",ylab="Anzahl" ,names.arg=c("Mac","286er","386er","486er","Pentium I") ,axisnames=T,col="gray") ---------- Thanks in advance Bernd -- Bernd Wei? (bernd.weiss at epost.de) PGP Key ID: 0x4117206F PGP FP: 08B2 09CD 7192 526D 93FD 2070 5...
2005 May 18
1
Testing for warning inside functions
...) warnings() # no warning is shown print(1) try({xxx}) print(2) print(geterrmessage()) print(3) warnings() print(4) } > f() [1] 0 [1] 1 Fehler in try({ : Objekt "xxx" nicht gefunden Zus??tzlich: Warnmeldung: Datenl??nge [3] ist kein Teiler oder Vielfaches der Anzahl der Zeilen [2] in matrix [1] 2 [1] "Fehler in try({ : Objekt \"xxx\" nicht gefunden\n" [1] 3 Warning message: Datenl??nge [3] ist kein Teiler oder Vielfaches der Anzahl der Zeilen [2] in matrix [1] 4 > version platform i686-pc-linux-gnu arch i686 os linux-gnu sys...
2009 Jan 07
1
Parse-Error creates strange function calls (completely different printouts) (PR#13436)
...ome data, but then the printouts were completely different than expected; and when commenting the new stuff out, the OK-behaviour came back. Here a diff of the code: ===================================== oliver at siouxsie:~/R-BUG$ diff ok.R buggy.R 64c64 < res.txt <- paste(# "\n\n Anzahl der Messungen:", sample_times, "\n", --- > res.txt <- paste("\n\n Anzahl der Messungen:", sample_times, "\n", oliver at siouxsie:~/R-BUG$ ====================================== You see, I only wanted to print out a variable. But the output is much bigg...
2013 Jan 31
2
use name (not values!) of a dataframe inside a funktion
...te(x),"[,2]") assign(name, factor(x[,2]))} f.fact(dfb) is.factor(dfb[,2]) > FALSE dfb <- data.frame(a=c(1,2,3,4),b=c(1,2,3,4)) f.fact <- function(x) { name <- paste0(get(x),"[,2]") assign(name, factor(x[,2]))} f.fact("dfb") is.factor(dfb[,2]) > Falsche Anzahl von Dimensionen dfb <- data.frame(a=c(1,2,3,4),b=c(1,2,3,4)) f.fact <- function(x) { name <- paste0(x,"[,2]") assign(name, factor(x[,2]))} f.fact("dfb") is.factor(dfb[,2]) > Falsche Anzahl von Dimensionen ächz ... [[alternative HTML version deleted]]
2019 May 04
2
read.table() fails with https in R 3.6 but not in R 3.5
In versions of R prior to 3.6.0 the following invocation succeeds, returning the data frame shown: > read.table("https://www.dwds.de/r/stat?corpus=kern&cnt=tokens&date=decade&format=text", header=TRUE) Dekade Anzahl 1 1900 11467254 2 1910 13023370 3 1920 13434601 4 1930 13296355 5 1940 12121250 6 1950 13191131 7 1960 10587420 8 1970 10944129 9 1980 11279439 10 1990 12052652 But in version 3.6.0 it fails: > read.table("https://www.dwds.de/r/stat?corpus=kern&cnt=tokens&...
2010 Dec 08
3
ReadWrite.xls problem
...and loaded the Package xlsReadWrite so far. I have also "Changed directory". This is what I have entered daten=read.xls("Daten A2") This is my Error-Message in its German original: Fehler in .Call("ReadXls", file, colNames, sheet, type, from, rowNames, : Falsche Anzahl von Argumenten (11), erwarte 10 f?r ReadXls This is my Error-Message in its english translation: Error in .Call("ReadXls", file, colNames, sheet, type, from, rowNames, : Wrong Number of Arguments (11), expect 10 for ReadXls Please help me in solving this problem. Without being able...
2011 Jul 20
3
Grouping columns
*Hi @ all, I have a question concerning the possibilty of grouping the columns of a matrix. R groups the columns alphabetically. What can I do to group the columns in my specifications? The script is the following:* > #R-Skript: Anzahl xyz > > #Quelldatei einlesen > b<-read.csv2("Z:/int/xyz.csv", header=TRUE) > > #Teilmengen f?r die Einzeljahre generieren > b1<-subset(b,jahr=="2007") > b2<-subset(b,jahr=="2008") > b3<-subset(b,jahr=="2009") > >...
2019 May 06
0
read.table() fails with https in R 3.6 but not in R 3.5
....05.19 19:04, Stephen Berman wrote: > In versions of R prior to 3.6.0 the following invocation succeeds, > returning the data frame shown: > >> read.table("https://www.dwds.de/r/stat?corpus=kern&cnt=tokens&date=decade&format=text", header=TRUE) > Dekade Anzahl > 1 1900 11467254 > 2 1910 13023370 > 3 1920 13434601 > 4 1930 13296355 > 5 1940 12121250 > 6 1950 13191131 > 7 1960 10587420 > 8 1970 10944129 > 9 1980 11279439 > 10 1990 12052652 > > But in version 3.6.0 it fails: > >> re...
2009 Jan 08
0
Parse-Error creates strange function calls (completely different (PR#13438)
...y different than > expected; and when commenting the new stuff out, > the OK-behaviour came back. > > > Here a diff of the code: > > ===================================== > oliver at siouxsie:~/R-BUG$ diff ok.R buggy.R > 64c64 > < res.txt <- paste(# "\n\n Anzahl der Messungen:", sample_times, "\n", > --- > >> res.txt <- paste("\n\n Anzahl der Messungen:", sample_times, "\n", >> > oliver at siouxsie:~/R-BUG$ > ====================================== > > You see, I only wanted to p...
2019 Nov 12
3
CDR extract call numbers on interval on unique callers
hi, we want to extract the information when the most callers are entering our phone system based on an interval of 15 minutes. this is quite simple (although not perfect) with select calldate, count(*) as anzahl from cdr where calldate > '2019-10-12' group by unix_timestamp(calldate) DIV 900 having ; Unfortunately we have lots of callers who calls multiple times when they are forwarded to a queue instead of being answered by a human immediately. But to know when we need more people I want to...
2002 May 22
1
3 OS/2 Server, 120 user, we waited to avoid W*-Server, is now the time? How?
...sagt schon fast alles. Zum besseren Verst?ndnis der Hintergrund. nachdem ich vor vielen jahren Pathworks-Server durch ein OS/2-Serversystem abgel?st habe,haben wir es auch noch geschafft, die n?chste Evolutionsstufe bis jetzt herauszuziehen. Wir nutzen File- und Printservices. Das ist alles. Die Anzahl der User tendiert gegen 150. Wir sind an zwei Standorten, aber ?ber VPN vernetzt. Die urspr?ngliche eigentliche Wunschvorstellung war diese: NAS mit Userauthentifizierung ?ber LDAP (wir haben ein zentrales LDAP-Verzeichnis, welches von Lotus/Domino (auf LINUX ;-)) bereitgestellt wird). Leider...
2002 Jun 11
1
SSH / PAM Problem
...rbindung zum Ldapserver so lange offen gehalten wird bis die ssh Session geschlossen wird. Das ist nur bei SSH so ! Alle andere Dienste sprechen den Server an und schliessen nach Best?ttigung des Passwortes die Session zum Ldapserver. Offene Sockets sind nicht so toll da irgendwann bei unserer User Anzahl keine freien Sockets mehr zur Verf?gung stehen w?rden. Gruss aus D?sseldorf Frank Beckmann -------- Urspr?ngliche Nachricht -------- Betreff: SSH / PAM Problem Datum: Tue, 11 Jun 2002 13:34:46 +0200 Von: Cengiz Tuztas <Cengiz.Tuztas at Sun.COM> Firma: Sun Microsystems GmbH An: Frank.Beckma...
2019 May 06
2
read.table() fails with https in R 3.6 but not in R 3.5
...te: >> In versions of R prior to 3.6.0 the following invocation succeeds, >> returning the data frame shown: >> >>> read.table("https://www.dwds.de/r/stat?corpus=kern&cnt=tokens&date=decade&format=text", >>> header=TRUE) >> Dekade Anzahl >> 1 1900 11467254 >> 2 1910 13023370 >> 3 1920 13434601 >> 4 1930 13296355 >> 5 1940 12121250 >> 6 1950 13191131 >> 7 1960 10587420 >> 8 1970 10944129 >> 9 1980 11279439 >> 10 1990 12052652 >> >> B...
2007 Dec 20
1
auto named savings (pngs & data-frames)
...line <- as.logical(unlist((zeilen), " ")) # fileline[j] <- list(fileline) # print(fileline[j])} #} # # # #list(ueber) #fix(ueber) #dim(ueber) #names(ueber) #ausgabe der userdaten in R #ueber$Sephal.Length #ueber$Sepal.Width #ausgabe der userdaten in einem ?bersichtpopup #anzahl der Zeilen, die "files" besitzt # #daten der einzelnen datein in den Speicher schreiben #file <- unlist(files), NA = TRUE #print(file) #meinetabelle <- read.table(file, header=FALS) #a <- read.table(file=stdin(User),header=FALSE) #meinetabelle <- read.table(, sep=?\t?, header...
2008 Mar 01
1
jpeg and margin text
...1,0.99,0.98,0.97,0.97,0.96,.95,0.8,0.8,0,0 .6)) Zugehoerigkeit<-LETTERS[1:20] Bezeichnung<-letters[1:20] colnames(datenbankdaten)<-c("Bezeichnung","A","B") # par = Setzt die Grafikparameter, die durch plot automatisch verwendet werden # mar = Anzahl der Textzeilen von den inneren Achsen des Schaubild zum Rand # Zeilenvektor: c(bottom, left, top, right) par(mar=c(3,4,4,25),family="serif") Fontparameter<-1 today<-Sys.Date() Vormonat<-Sys.Date()-20 Stand_aktuell<-format(today, "%B %Y") Stand_Vormona...
2019 Jun 21
0
CentOS 7 SeLinux Problem?
...True Richtlinientyp targeted Enforcing-Modus Enforcing Rechnername mx01.example.com Plattform Linux mx01.example.com 3.10.0-957.21.3.el7.x86_64 #1 SMP Tue Jun 18 16:35:19 UTC 2019 x86_64 x86_64 Anzahl der Alarme 1 Zuerst gesehen 2019-06-21 06:15:28 CEST Zuletzt gesehen 2019-06-21 06:15:28 CEST Lokale ID 259a6386-ad49-4cdf-a21b-97f891c997aa Raw-Audit-Meldungen type=AVC msg=audit(1561090528.816:4135): avc: denied { getattr } for pid...
2019 May 13
0
read.table() fails with https in R 3.6 but not in R 3.5
...ons of R prior to 3.6.0 the following invocation succeeds, >>> returning the data frame shown: >>> >>>> read.table("https://www.dwds.de/r/stat?corpus=kern&cnt=tokens&date=decade&format=text", >>>> header=TRUE) >>> Dekade Anzahl >>> 1 1900 11467254 >>> 2 1910 13023370 >>> 3 1920 13434601 >>> 4 1930 13296355 >>> 5 1940 12121250 >>> 6 1950 13191131 >>> 7 1960 10587420 >>> 8 1970 10944129 >>> 9 1980 11279439 >>&gt...
2001 Nov 07
3
samba PDC with NIS, or other solution?
We have a network with Windows NT/2000, SGI's, Linux, Macintosh, AIX. Our user account/passwords for all our machines is handled by NIS on an AIX machine. Our unix machines autheticate through NIS. Our windows machines authenticate by loging on to an NT server acting as the PDC, and that PDC has a service installed on it called "WinDD NIS" (made by Tektronix I think) which contacts