search for: data_head

Displaying 6 results from an estimated 6 matches for "data_head".

Did you mean: data_header
2009 Sep 02
1
Problems with Boxplot
...is of different length. I want to get a series of boxplots with the date along the x-axis, with alternating colors, so that it is easy to see the difference between the results within each date, as well as across dates. testdata<- c("C:\\Files\\R\\Sample R code\\Post trial data.csv") data_headings <- read.table(testdata, skip = 0, sep = ",", header = FALSE)[1,] my_data <- read.table(testdata, skip = 1, sep = ",", na.strings = "na",header = FALSE) boxplot(my_data*100, names = data_headings, outline = FALSE, range = 0.3, border = c(2,4)) The result is a...
2008 Aug 07
3
Create new dataframes with dames from dataset...
...row_vector <- which(cleaner_1[,5]==Motor[i]) # find the first motor cleaner_type_1 <- cleaner_1[row_vector,] # store it in cleaner_type_1 Data_x <-cleaner_type_1[9] Data_y <-cleaner_type_1[10] hist(Data_x[,], probability=TRUE, breaks=5, main=data_header[9]) savePlot(filename = paste(c("C:/pow",j,"_",i), collapse="") ,type = "eps") # Save plot with order no i
2024 Jun 06
2
R Shiny Help - Trouble passing user input columns to emmeans after ANOVA analysis
...;, "Choose .csv or .xlsx file", accept = c("text/csv", "text/comma-separated-values", ".csv", ".xlsx")), textOutput("data_info"), verbatimTextOutput("data_head"), uiOutput("column_selector_1"), uiOutput("column_selector_2"), uiOutput("column_selector_3"), uiOutput("column_selector_4"), textOutput("dist_info"), plotOutput("dist"), textOutput("str_info"), verbatimText...
2006 Apr 13
1
Guidance on step() with large dataset (750K) solicited...
...e code below, and any comments or suggestions would be most welcome (besides `what type of idiot lets information criteria determine their model ;-)') Thanks ever so much in advance. -- Jeff ---- Begin ---- ## Read in the full data set (n=745466 observations) data <- read.table("../data_header.dat",header=TRUE) ## Create a data frame with all categorical variables declared as ## unordered factors data <- data.frame(logrprice=data$logrprice, cgt=factor(data$cgt), cag=factor(data$cag), gstann=factor(data$gstann),...
2017 Oct 26
2
Bug: lmtp proxy does not quote local parts with spaces
On 26/10/2017 18:38, Alexander Dalloz wrote: > Am 26.10.2017 um 12:20 schrieb David Zambonini: >> >> There seems to be a bug with RFC822 processing in ltmp proxying that >> doesn't >> quote local parts that, for example, contain spaces. > > Newer related RFCs are RFC 5321 and 5322. Typo, meant to say RFC2822, which they still supercede, not that the
2017 Nov 01
2
Bug: lmtp proxy does not quote local parts with spaces
...tp/lmtp-client.c 2017-11-01 16:09:28.384866755 +0000 @@ -8,6 +8,7 @@ #include "ostream.h" #include "str.h" #include "dns-lookup.h" +#include "rfc822-parser.h" #include "lmtp-client.h" #include <ctype.h> @@ -778,6 +779,73 @@ client->data_header = p_strdup(client->pool, str); } +/* similar to (private) str_append_maybe_escape() in lib-mail */ +static void lmtp_client_rfc822_escape_address(string_t *dest_r, const char *str) +{ + const char *p; + const char *domain; + + /* no strrchrnul */ + domain = strrc...