search for: plotten

Displaying 3 results from an estimated 3 matches for "plotten".

Did you mean: plotted
2009 Aug 12
1
calling a function with dynamically generated buttons
Hallo, I'm dynamically generating buttons depending on the number of rows of my dataframe. Every button is supposed to call a function which generates a plot with the values of one of my dataframe rows. My code looks like this: base <- tktoplevel() plotten <- function(mat, namen, titel) { midpts <- barplot(height=mat, names.arg = namen, main = titel, las=2) text(midpts, 1, mat) mtext(text=paste("Treshold:", thresh), side=3, col="blue") } lb <- tklabel(base, text="Barplot:")...
2007 Oct 12
1
Batch-Plot Histograms
..."grey",lty=3) axis(side=1,at=Median[i],labels="Median",col="grey") hist_data<-hist(matrix[,i],plot=F,breaks[1]) Quantil_unten<-quantile(matrix[,i],((100-Bereich_blau)/2)/100) Quantil_oben<-quantile(matrix[,i], (100-(100-Bereich_blau)/2)/100) #Plotten der roten unterer Teil for(j in 1:length(hist_data$breaks)){ if (hist_data$breaks[j]<Quantil_unten) hv<-j } for(k in 1:hv){ rect(hist_data$breaks[k],0,hist_data$breaks[k+1],hist_data$counts[k],col="red") } for(l in 1:length(hist...
2008 Oct 15
0
R-help Digest, Vol 67, Issue 31
...-project.org> Message-ID: <A5722AA0260E414D945649DED23EDF8E01B41DB1 at TDASN140.tedrive.org> Content-Type: text/plain Hallo r-Projekt Team, ich bin Anf?nger in R und k?nnte ein wenig Hilfe gebrauchen. Ich m?chte eine Weibullverteilung (Weibullgerade und Genauigkeitskurven) berechnen und plotten. Au?erdem ben?tige ich den Formfaktor, den Skalierungsfaktor und Werte wie B5, B10, B50, B90, B95. In der Regel habe ich 6-20 Datenpunkte, z.B. aus Bruchlastversuchen. Ich kann mir Vorstellen, dass es daf?r schon fertige Scripte oder How-Tos existieren, habe aber beim googeln nichts gefunden. W?re...