search for: data_header

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

2009 Sep 02
1
Problems with Boxplot
Hello, I have been having difficulty getting boxplot to give the output I want - probably a result of the way I have been handling the data. The data is arranged in columns: each date has two sets of data. The number of data points varies with the date, so each column 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
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
Hello everybody, I have experience coding with R, but am brand new to R Shiny. I am trying to produce an application that will allow users to upload their own dataset, select columns they want an ANOVA analysis run on, and generate graphs that will allow users to view their results. However, I am getting the following error: *"Argument is of length zero."* Being new to Shiny, I am
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 = strrchr...