search for: type3

Displaying 20 results from an estimated 44 matches for "type3".

Did you mean: type
2011 Jul 11
3
Stacked bar plot of frequency vs time
Hi All, New to R, but committed. I looked in a number of places but can't figure out my current problem. I have date of the type: Time Type1 Type2 Type3 1 .50 .25 .25 4 .55 .25 .20 5 .65 .20 .15 etc which describe the frequency of types 1, 2 and 3 (adding up to 100%) over time. I would like to create a stacked bar chart showing these frequencies, each bar of height = 1, subsections of bars proport...
2006 Jan 10
1
extracting coefficients from lmer
...Structure: fixed weights Formula: ~invwt Fixed effects: score ~ x * type Value Std.Error DF t-value p-value (Intercept) -0.0812834 0.2933314 294 -0.2771043 0.7819 x1 0.4143072 0.4180624 98 0.9910176 0.3241 type2 0.8509166 0.4084443 294 2.0833112 0.0381 type3 0.6691275 0.4024369 294 1.6626894 0.0974 type4 -0.7830413 0.4123851 294 -1.8988109 0.0586 x1:type2 1.0643239 0.6791126 294 1.5672274 0.1181 x1:type3 -0.7533085 0.5674532 294 -1.3275253 0.1854 x1:type4 -0.0549616 0.5777216 294 -0.0951351 0.9243 etc. However, there seem...
2008 Mar 07
0
linear discriminant analysis / search
Dear R help list, I have a training dataset that looks like Table1. I have an unknown dataset that looks like Table2. I want to have a program that should search the training dataset and identify that the unknown sample belongs to which category (type1, type2 or type3) and also if the unknown does not belong to any of the categories, it should let me know. The real dataset has 600 variables and 50 sample types. I tried working with linear discriminant analysis (lda in MASS package) and its predict function. It works great but I think lda is supposed to categor...
2008 Mar 07
0
linear discriminant analysis
Dear R help list, I have a training dataset that looks like Table1. I have an unknown dataset that looks like Table2. I want to have a program that should search the training dataset and identify that the unknown sample belongs to which category (type1, type2 or type3) and also if the unknown does not belong to any of the categories, it should let me know. The real dataset has 600 variables and 50 sample types. I tried working with linear discriminant analysis (lda in MASS package) and its predict function. It works great but I think lda is supposed to categor...
2006 Jun 26
0
[klibc 37/43] x86_64 support for klibc
...arg2) \ +{ \ +long __res; \ +__asm__ volatile (__syscall \ + : "=a" (__res) \ + : "0" (__NR_##name),"D" (arg1),"S" (arg2) \ + : __syscall_clobber); \ +__syscall_return(type,__res); \ +} + +#define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ +type name (type1 arg1,type2 arg2,type3 arg3) \ +{ \ +long __res; \ +__asm__ volatile (__syscall \ + : "=a" (__res) \ + : "0" (__NR_##name),"D" (arg1),"S" (arg2), \ + "d" (arg3) \ + : __syscall_clobber); \ +__sy...
2011 Feb 10
1
Ggplot: free x-scales in a facet-grid
...his (the numbers refer to the ID, the letters to the time values): 1 x o s TYPE1 2 x o s 3 x o s TYPE2 4 x o s TYPE3 The data are ordered within each type, according to date 's'. Now here's the problem. The most data are between the periode 01/12/2010 and 31/01/2011. But there are some outliers, going back to 2003. Now I would like to split the plot in 2 (based on the index 'pos', split da...
2006 Jun 26
0
[klibc 25/43] ia64 support for klibc
...\ + _retval = -1; \ + } \ + return (type)_retval; \ +} + +#define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ +type \ +name (type1 arg1, type2 arg2, type3 arg3) \ +{ \ + register long _r8 asm ("r8"); \ +...
2018 Jul 18
2
Why Clang is unpacking my StructType Function arguments
...ution based on LLVM/Clang technologies which involves generating LLVM IR based on Bitcode generated by Clang from C codes. We have a C function which prototype looks like the following: typedef struct { int (*allocFunction)(void* x, void* y); void* YY; } Type4; int bar (Type1 *x, Type2 *y, Type3 *z, Type4 bar) When we compile this code uses Clang 6 into x86_64-apple-macos, the generated function in IR has the type: ; Function Attrs: noinline nounwind optnone ssp uwtable define i32 @bar(%struct.Type1*, %struct.Type2*, %struct.Type3*,i32 (i8*, i8*)*, i8*) Which basically split the...
2008 Sep 26
1
How to update a column in a dataframe, more simply...
...* 0.111 data$score[data$type=="1" & data$year=="2002"]<-data$score * 0.222 data$score[data$type=="1" & data$year=="2003"]<-data$score * 0.333 ...but, if possible, using simpler code. I've got several dozen lines of code like this (type 2, type3, etc. for the same years) so it would be great if I could reduce each set of three lines of code to one line Any help much appreciated, thanks! Mark
2009 Feb 13
1
equivalent to SAS genmod code in R?
...pecielly since I only have an old SAS GENMOD code structure from my project supervisor as an indication. My question is no, does there exist a code in R which is equivalent to the SAS code below? PROC GENMOD DATA=X; CLASS FLH; MODEL BS/OCCUPANCY = distcrop distfor flh distcrop*flh /D=B LINK=LOGIT TYPE3; RUN; Thanks for answers! Nick [[alternative HTML version deleted]]
2014 Feb 22
0
Validates inclusion of include fails at plugin.
Hello, MyModel.rb, TYPES = { "type1" => 1 , "type2" => 2, "type3" => 3 }.freeze validates_inclusion_of :my_type, :in => TYPES.keys --------------------------------------- MyModelPatch.rb, base.send(:remove_const, :TYPES) base._validators[:my_type].reject!{ |validator| validator if validator.is_a? ActiveModel::Validations::InclusionValidator } TYPES...
2013 Mar 05
3
[LLVMdev] tbaa metadata representation
...rus.net/>, I ended up using an undirected graph to represent aliasing instead, I believe it might be suitable for TBAA's purposes as well, for the following reasons. * Does the graph need to be acyclic? Consider these struct types: struct a { type1 x; type2 y } struct b { type2 y; type3 z } struct c { type3 z; type1 x } They form the following alias graph (sorry about the crappy ascii art): a --> b --> c -+ ^______________| Which won't be representable if we force our tbaa graph to be acyclic. * Does it need to be directed? If we use a directed graph, t...
2011 Jul 22
2
Lattice: distance of Y-axis label from plot
Basic question: I looked around quite a bit, still having a little trouble manipulating the distance between the Y-axis label and the plot. In this case, I would like to move the Y axis title closer to the plot. # Data tC <- textConnection(" Time Type1 Type2 Type3 1.3 .50 .10 .40 4.5 .45 .20 .35 5.2 .40 .30 .30 ") data1 <- read.table(header=TRUE, tC) data2 <- data.frame(Time=rep(data1$Time, 3), stack(data1[,2:4])) close.connection(tC) rm(tC) #PLOT 1 lattice bar plot require(lattice) plot1<-xyplot(values ~ Time, ylab=list(label="Move this...
2011 Jul 21
6
Lattice: place ticks only on y-axis
.../tolstoy.newcastle.edu.au/R/e7/help/09/06/1733.html, help pages, etc), tried variations of "scales = list(alternating = c(0,0)", "scales = list(alternating = c(0,0), tck = c(0,0))" and others, couldn't quite get it. #My code: tC <- textConnection(" Time Type1 Type2 Type3 1.3 .50 .25 .25 4.5 .55 .25 .20 5.2 .65 .20 .15 ") data1 <- read.table(header=TRUE, tC) data2 <- data.frame(Time=rep(data1$Time, 3), stack(data1[,2:4])) close.connection(tC) rm(tC) require(lattice) plot1<-xyplot(values ~ Time, scales = list(alternating = c(0,0), tck = c(0,0)), group...
2005 Apr 12
1
lme problem
...(bstime), and type was a type of chocolate chip. Problem is that I obtain different degrees of freedom compared to one in the book. Could it be sum of squares problem (type III vs. type I)? Milliken & Johnson use SAS for calculations and this is program the used: proc mixed data=mmacov method=type3; class type; model time=type bstime*type/solution noint. My R code is: LME.1=lme(time~bstime:type+type-1,data=CCE,random=~1|type) and summary is: Value Std.Error DF t-value p-value typeBlue M&M 18.0 18.5...
2013 Jul 31
29
[PATCH 0/9] tools: remove or disable old/useless/unused/unmainted stuff
depends on "autoconf: regenerate configure scripts with 4.4 version" This series removes some of the really old deadwood from the tools build and makes some other things which are on their way out configurable at build time with a default depending on how far down the slope I judge them to be. * nuke in tree copy of libaio * nuke obsolete tools: xsview, miniterm, lomount & sv *
2006 Jun 26
0
[klibc 31/43] ppc support for klibc
...sys.h + * + * Architecture-specific syscall definitions + */ + +#ifndef _KLIBC_ARCHSYS_H +#define _KLIBC_ARCHSYS_H + +/* PowerPC seems to lack _syscall6() in its headers */ +/* This seems to work on both 32- and 64-bit ppc */ + +#ifndef _syscall6 + +#define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ + type5,arg5,type6,arg6) \ +type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5,type6 arg6) \ +{ \ + unsigned long __sc_ret, __sc_err; \ + { \ +...
2019 Nov 21
11
Samba4 - Printer Drivers install fails
...amba4/cups server is operationnal as i'm able to add new printers or drivers to it through MMC. I guess it's not a permission problem on the server as i perform the operation as domain administrator and i'm able tu upload some drivers. The setup only fails for specific drivers (x64, type3 - user mode)? but i d'on't know why. I precise i upload those drivers from a 64 bits windows. I even tried this parameter on cups's? smb.conf : ?spoolss: architecture = Windows x64 I also read the whole page from https://wiki.samba.org/index.php/Setting_up_Automatic_Printer_Driv...
2006 Jun 26
0
[klibc 32/43] ppc64 support for klibc
...- /dev/null +++ b/usr/include/arch/ppc64/klibc/archsys.h @@ -0,0 +1,52 @@ +/* + * arch/ppc64/include/klibc/archsys.h + * + * Architecture-specific syscall definitions + */ + +#ifndef _KLIBC_ARCHSYS_H +#define _KLIBC_ARCHSYS_H + +#ifndef _syscall6 + +#define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ + type5,arg5,type6,arg6) \ +type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5,type6 arg6) \ +{ \ + unsigned long __sc_ret, __sc_err; \ + { \ +...
2017 Apr 28
2
Problem with Samba 4.6
On Fri, 28 Apr 2017 08:15:49 +0200 Marc Muehlfeld <mmuehlfeld at samba.org> wrote: > Am 27.04.2017 um 22:02 schrieb Rowland Penny via samba: > > Not entirely sure this is just a Samba problem, see here: > > > >