Displaying 20 results from an estimated 481 matches for "maj".
Did you mean:
mac
2010 Oct 29
2
Printing data.frame data: alternatives to print?
...s wondering if there were alternate printing styles for data that
already exist, and if someone could direct me to them? Inclded is a
sample code and 2 possibilities (others welcome for consideration) of
how I want to display some data.
Thanks,
Matt
-----
df <- data.frame(
f1=rep(c("Maj I", "Maj II", "Maj III"), each=3),
f2=c("Minor A", "Minor A", "Minor A", "Minor A", "Minor B", "Minor
B", "Minor B", "Minor C", "Minor C")
)
-----
What I want printed is somethin...
2016 Dec 19
2
[lld] RFC: Finding shared libraries on OpenBSD
On OpenBSD we still use the "classic" SunOS 4 shared library
versioning scheme where the major and minor number are part of the
library name (and recorded in DT_NEEDED entries). For example the
shared libc on the OpenBSD-current is named libc.so.89.2. With this
scheme, linker has to pick the pick the library with the highest major
and minor (within the highest major version); the symboli...
2016 Dec 20
0
[lld] RFC: Finding shared libraries on OpenBSD
...don't
have symbolic links unlike the other Unix-like systems in the first place.
On Mon, Dec 19, 2016 at 2:27 PM, Mark Kettenis via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> On OpenBSD we still use the "classic" SunOS 4 shared library
> versioning scheme where the major and minor number are part of the
> library name (and recorded in DT_NEEDED entries). For example the
> shared libc on the OpenBSD-current is named libc.so.89.2. With this
> scheme, linker has to pick the pick the library with the highest major
> and minor (within the highest major v...
2006 Apr 14
5
vector-factor operation
...vec. After a
while I realised that
lm1 <- lm(vec ~ Fac)
fitted(lm1)
did what I want.
But there must be another way to do this, and it would be good to be
able to apply other functions than mean() in this way.
Cheers, Murray
--
Dr Murray Jorgensen http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: maj at waikato.ac.nz Fax 7 838 4155
Phone +64 7 838 4773 wk Home +64 7 825 0441 Mobile 021 1395 862
2018 Apr 05
6
[PATCH v3 0/3] v2v: improve OVF in OVirt flavour
Hi,
v3 of these patches:
https://www.redhat.com/archives/libguestfs/2018-April/msg00002.html
https://www.redhat.com/archives/libguestfs/2018-April/msg00006.html
Thanks,
Pino Toscano (3):
v2v: OVF: improve get_ostype mappings
v2v: OVF: write ovirt:id attribute for the OS in OVirt flavour
v2v: OVF: fix ovf:id for VirtualSystem in OVirt flavour
v2v/create_ovf.ml | 253
2003 Sep 17
5
Quit asking me if I want to save the workspace!
How do you stop R from putting up a dialog box when you quit Rgui?
(I use Windows and I never save workspaces that way)
Murray
--
Dr Murray Jorgensen http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: maj at waikato.ac.nz Fax 7 838 4155
Phone +64 7 838 4773 wk +64 7 849 6486 home Mobile 021 1395 862
2010 Jul 27
4
Sweave and scan()
...unk 1
Error in parse(text = chunk) : unexpected numeric constant in:
"height = scan()
64 62"
>
Comments would be appreciated. (And thanks to Ross Darnell for a lot of
help on another list.)
Cheers, Murray Jorgensen
--
Dr Murray Jorgensen http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: maj at waikato.ac.nz Fax 7 838 4155
Phone +64 7 838 4773 wk Home +64 7 825 0441 Mobile 021 0200 8350
2011 Jan 05
4
Converting Fortran or C++ etc to R
I'm going to try my hand at converting some Fortran programs to R. Does
anyone know of any good articles giving hints at such tasks? I will post
a selective summary of my gleanings.
Cheers, Murray
--
Dr Murray Jorgensen http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: maj at waikato.ac.nz Fax 7 838 4155
Phone +64 7 838 4773 wk Home +64 7 825 0441 Mobile 021 0200 8350
2001 May 22
2
MASS data sets
...ng message:
Data set `abbey' not found in: data(abbey)
And yet all the .rda files for the MASS datasets are in
D:\Program Files\rw1022\library\MASS\data
Help, anyone?
Murray Jorgensen, Department of Statistics, U of Waikato, Hamilton, NZ
-----[+64-7-838-4773]---------------------------[maj at waikato.ac.nz]-----
"Doubt everything or believe everything:these are two equally convenient
strategies. With either we dispense with the need to think."
http://www.stats.waikato.ac.nz/Staff/maj.html - Henri Poincare'
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2003 Sep 23
2
R-project [.com?] [.net?]
...to be Japanese. Does anyone know anything
about them? I suppose that it is not unusual for names close to those of
popular sites to be used. It is good that they use a different language
or there might well be confusion.
Murray
--
Dr Murray Jorgensen http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: maj at waikato.ac.nz Fax 7 838 4155
Phone +64 7 838 4773 wk +64 7 849 6486 home Mobile 021 1395 862
1999 Oct 10
1
Using metric scaling
I want to enter a symmetric matrix containing distances for use in the
cmdscale() metric scaling function. The matrix currently sits on a file in
lower triangular form looking like this:
1 AWANUI RIVER .000
2 BLENHEIM .510 .000
3 COLLINGWOOD .510 .109 .000
4 FOXTON .510 .141 .141 .000
5 GISBORNE .549 .549 .549
2003 Aug 20
5
Interlacing two vectors
I want to interlace two vectors. This I can do:
> x <- 1:4
> z <- x+0.5
> as.vector(t(cbind(x,z)))
[1] 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5
but this seems rather inelegant. Any suggestions?
Murray
--
Dr Murray Jorgensen http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: maj at waikato.ac.nz Fax 7 838 4155
Phone +64 7 838 4773 wk +64 7 849 6486 home Mobile 021 1395 862
2003 Dec 30
4
Assignments in loops
...)),
comment.char = "#")
}
I need something like an unquote() function that will allow the "brand" on
the LHS of the assignment to be treated as an object name instead of a
character string.
Murray
Dr Murray Jorgensen http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: maj at waikato.ac.nz Fax 7 838 4155
Phone +64 7 838 4773 wk +64 7 849 6486 home Mobile 021 1395 862
2006 Jul 07
1
Levels and GLM
I am using the as.factor command to use with glm. When I use the command
>maj <- as.factor(data.logistic$Majors)
>maj
I receive the following output:
[1] M M N M M M M N N M M M N M M M M M M M M M M M N M N N M M N M
M N M M M M M
[40] N M N M M N M M M N M N M N M N N N M N M M M M M M N M N M M M
M M N N M M M
[79] M M M N N M M N M N M M M M M M M M M M M M M...
2004 Apr 21
2
Rgui front-end has encountered a problem and needs to close
...nt of binary.
I was going to re-install R at work today but the thing worked OK. But
back home tonight I get the same problem! The only difference between
home and work is that at work I'm connected to a LAN.
Cheers,
Murray
--
Dr Murray Jorgensen http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: maj at waikato.ac.nz Fax 7 838 4155
Phone +64 7 838 4773 wk +64 7 849 6486 home Mobile 021 1395 862
2001 Nov 12
3
Plotting symbols
Has anyone got a cute way of compiling a table of the available plotting
symbols?
I've been repeatedly pasting in
cno <- cno + 1
cno
plot(x,y,pch=cno)
which is tedious, and besides I have to note down the symbols by hand.
Dr Murray Jorgensen http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: maj at waikato.ac.nz Fax +64-7 838 4155
Phone +64-7 838 4773 home phone +64-7 856 6705 Mobile +64-21 139 5862
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-...
2007 Dec 05
2
Dimension of a vector
...1 3 5 7 9
[2,] 2 4 6 8 10
> dim(A)
[1] 2 5
> dim(A) <- 10
> A
[1] 1 2 3 4 5 6 7 8 9 10
> dim(A)
[1] 10
Would it not make sense to have dim(A) = length(A) for all vectors?
Murray
--
Dr Murray Jorgensen http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: maj at waikato.ac.nz Fax 7 838 4155
Phone +64 7 838 4773 wk Home +64 7 825 0441 Mobile 021 1395 862
2003 Jun 18
2
Forward stepwise procedure w/ stepAIC
...Thanks.
Marc
> m1.stepFwd <- stepAIC(m1, direction="forward",
+ scope=list(upper=~age.refc.fo + dusz.cat.fo +
+ ed.du.f + emp.ref.f + geodist3.f + has.fone.f +
+ healthdu.f + help.du.f + inc.ref.f + maj.act.f +
+ marryref.f + msa.stat.f + regionrf.f + r.e.ref.f +
+ sex.ref.f + type.psu.f + urb.stat.f, lower=~1))
Start: AIC= 4752.19
response ~ age.refc.fo + dusz.cat.fo + ed.du.f + emp.ref.f +
geodist3.f + has.fone.f + healthdu.f + help.d...
2017 Jun 05
2
Backend implementation for an architecture with only majority operation instruction
Hey Sean,
So the processor does in-memory computing, it reads instructions and
operands from the memory array, performs the majority operations within the
memory array itself.
It does instructions using resistive majority which is AB'+B'C+AC
Like it does AND operation as
1: 0, 1, @C; //C=0
2: 0, 1, @Binv; //Binv=0
3: 1, @B, @Binv; //Binv=B
4: @A, @Binv, @C; //C=A.B
where each operation is a resistive majority and o...
2020 Jun 19
1
[v2v PATCH] libosinfo: declare autocleanup funcs with libosinfo < 1.8.0
...2v/libosinfo-c.c | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/v2v/libosinfo-c.c b/v2v/libosinfo-c.c
index e5327dff..322e7d3d 100644
--- a/v2v/libosinfo-c.c
+++ b/v2v/libosinfo-c.c
@@ -40,8 +40,13 @@
#define V2V_LIBOSINFO_VERSION_HEX \
MAKE_VERSION_HEX(OSINFO_MAJOR_VERSION, OSINFO_MINOR_VERSION, OSINFO_MICRO_VERSION)
#define IS_LIBOSINFO_VERSION(maj, min, mic) \
- V2V_LIBOSINFO_VERSION_HEX >= MAKE_VERSION_HEX(maj, min, mic)
+ (V2V_LIBOSINFO_VERSION_HEX >= MAKE_VERSION_HEX(maj, min, mic))
+/*
+ * libosinfo 1.8.0 provides auto-cleanup functions...