Displaying 20 results from an estimated 76 matches for "assaulted".
Did you mean:
assault
2012 Aug 21
1
make check fails two tests on RHEL 6 build
I am installing R 2.15.1 onto RHEL 6, using gcc 4.7.0 with Intel MKL
10.3.7 and the following environment:
export BLAS_LIBS="-Wl,--start-group
/usr/caen/intel-12.1/mkl/lib/intel64/libmkl_gf_lp64.a
/usr/caen/intel-12.1/mkl/lib/intel64/libmkl_sequential.a
/usr/caen/intel-12.1/mkl/lib/intel64/libmkl_core.a -Wl,--end-group
-lpthread"
export LAPACK_LIBS="-Wl,--start-group
2008 Jul 15
3
playwith package crashes on Mac
Dear R-helpers,
I tried the playwith packages for the first time, and it crashed R:
> require(playwith)
Loading required package: playwith
Loading required package: lattice
Loading required package: grid
Loading required package: gWidgets
Loading required package: gWidgetsRGtk2
Loading required package: RGtk2
Loading required package: cairoDevice
> sessionInfo()
R version 2.7.1
2008 Jul 08
3
Armed Assault - no 3d rendered
Hi all
Hoping that someone have any idea how to get Arma running properly. Maybe there is something I have not tested or a developer can take a look?
Using version 1.10 of Wine and the latest patch to Armed Assault v1.14.
Game will install properly with all patches up to 1.14 with no issues. When starting the game the menu work properly but the 3d background is not rendered and just showing a
2002 Jan 27
5
EPS->LaTeX problem
Greetings-
I have a strange problem displaying a graph from R (1.3.1, linux) in a
LaTeX document of documentclass seminar.
I'm using graphicx to include the file:
\usepackage{graphicx}
...
\resizebox{\textwidth}{\textheight}{\includegraphics{crime.eps}}
When I do this, the entire slide (including the page number) is rotated
180 degrees. Any ideas why this happens?
The graph was created
2010 May 17
0
Medal of Honor: Pacific Assault Problems
I've noticed a couple problems running Medal of Honor: Pacific Assault under Ubuntu 10.04 using Wine 1.1.44 and I was wondering if anyone knew how to fix them.
1) The video is incredibly slow...it's similar to a fullscreen game running in a window (for lack of a better description), although I'm playing the game in fullscreen.
2) The mouse cursor remains present even after the game
2006 Dec 05
1
problem with lists...
Hi guys,
I am new to R, so sorry if my problem seems trivial.
Sometimes I encounter some lists, which I cannot index their components
with [ . ]
For instance the prcomp() function returns a 'prcomp' object whose
components are some 'lists'. the second component is a list that
comtains the following:
> mylist <- churn[2]
> class(mylist)
[1] "list"
>
2007 Mar 19
0
Warhammer: Dawn Of War Winter Assault Expansion
Hello.
I'm trying to install this expansion under wine. The uninstaller reverted
Dawn Of War to 1.40 correctly as it should, but due to an msi installer
error, the expansion didn't install.
I'm trying to copy the files by hand; I used cabextract to get them from
inside the CAB files, but now I need to know where to put them. These files
are:
Viewing cabinet: WinterAssault1.cab
File
2006 Dec 26
3
McNemar test in R & SPSS
Hello,
I am hoping someone can clarify why I might obtain a quite different value
in R & SPSS for a McNemar test I ran.
Firstly, here is the R syntax & output
R OUTPUT
> mctest <- as.table(matrix(c(128,29,331,430),
+ ncol =2, dimnames = list(group=c("preMHT","postMHT"),
+ assault=c("yes","no"))))
> mctest
assault
2008 Jan 13
1
What is the 'scale' in princomp() function?
Dear R users,
When I tried to use princomp() from stats packages to do Principal
Components Analysis, I am not very clear what is the "scale".
And the scores are different from "PROC PRINCOMP" procedure from SAS.
Using the example data from this package:
restpc <- princomp(USArrests, cor = TRUE)
> restpc$scale
Murder Assault UrbanPop Rape
4.311735 82.500075
2008 Mar 06
0
Help with colinearity problem in multiple linear regression
Hello,
For basic linear regression lm() does the job well, for datasets that are
larger than memory biglm() seems to work.
I'm working on a parallel implementation of multiple linear regression for
datasets that are too large for memory.
Currently I am working over least squares:
calculating: t(X) %*% X and t(X) %*% y
separately in parallel on each node
This generates a
2009 Dec 23
1
prcomp : plotting only explanatory axis arrows
Dear all,
I have a very large dataset (1712351 , 20) and would like
to plot only the arrows that represent the
contribution of each variables.
On the sample below I woild like to plot
only the explanatory variables (Murder, Assault..)
and not the sites.
prcomp(USArrests) # inappropriate
prcomp(USArrests, scale = TRUE)
prcomp(~ Murder + Assault + Rape, data = USArrests, scale = TRUE)
2007 Aug 20
1
SimpleTextRecipes
I have copied the simple text snippets into a pp file and set a host to
attempt to add lines, but regardless if the line is there or not, it still
adds it...
what am I doing wrong?
in definitions/linetests.pp:
define append_if_no_such_line($file, $line) {
exec { "echo ''$line'' >> ''$file''":
unless => "grep -qe
2007 Jun 27
1
Condensed PCA Results
Hello all,
I'm currently using R to do PCA Analysis, and was wondering if anyone knew the
specific R Code that could limit the output of the PCA Analysis so that you
only get the Principal Component features as your output and none of the
extraneous words or numbers that you don't want.
If that was unclear, let me use linear regression as an example:
"lm(y~x)" is the normal
2011 Sep 09
2
prcomp: results with reversed sign in output?
Dear All,
when I'm running a PCA with
prcomp(USArrests, scale = TRUE)
I get the right principal components, but with the wrong sign infront
Rotation:
PC1 PC2 PC3 PC4
Murder 0.5358995 -0.4181809 0.3412327 0.64922780
Assault 0.5831836 -0.1879856 0.2681484 -0.74340748
UrbanPop 0.2781909 0.8728062 0.3780158 0.13387773
Rape 0.5434321 0.1673186 -0.8177779 0.08902432
instead of
PC1 PC2 PC3 PC4
2010 Nov 25
1
RODBC
Hi,
I am running the RODBC examples form the help guide. I am trying to
UPDATE a table in an Access data base but I am having an error.
library(RODBC)
library(termstrc)
path = getwd()
setwd(getwd())
dbName = "data.mdb"
pathdbname = paste(path,"/",dbName,sep="")
accesChannel = odbcConnectAccess(pathdbname, uid = "", pwd = "")
2007 Feb 06
3
Warhammer: Dawn Of War Winter Assault Expansion (MSI problem)
Hello.
I'm trying to install this expansion under wine. The uninstaller reverted
Dawn Of War to 1.40 correctly as it should, but due to an msi installer
error, the expansion didn't install:
fixme:advapi:LookupAccountNameW (null) L"fab" (nil) 0x34f808 (nil) 0x34f804
0x34f810 - stub
fixme:advapi:LookupAccountNameW (null) L"fab" 0x16d190 0x34f808 0x16d1a8
0x34f804
2008 Aug 02
1
VideoMemorySize registry key not being applied? [wine-1.1.2]
I am using Ubuntu Hardy, using the latest release of wine from the wine repos. I have an nVidia 7600GT with 256MB of video memory. One windows game i installed, Medal of Honor Allied Assault, has a simple config utility that sets game settings based on your hardware. This utility is detecting only 64MB of video memory.
I tried setting it using wine regedit, HKCU>Software>Wine>Direct3d
2014 Oct 22
1
"make check" fails on lapack.R and stats-Ex.R
Hi folks,
I suspect this is a request for a sanity check than a bug report:
I've been successfully compiling an optimised version of R for several years using the Intel compiler and MKL. I've just test-run the new Intel 15.0 compiler suite, and I'm seeing a few numeric failures that I don't see using the same build method with Intel 13.0. I've attached the output of
2017 Aug 09
1
arithmetic with zero-column data.frames
So as often there is more to it than you first think.
Let's consider this an RFC (for experienced long time R users) :
>>>>> Martin Maechler <maechler at stat.math.ethz.ch>
>>>>> on Wed, 9 Aug 2017 10:45:56 +0200 writes:
>>>>> William Dunlap via R-devel <r-devel at r-project.org>
>>>>> on Tue, 8 Aug 2017 11:59:45
2004 Nov 25
3
Searching for a string in RSQLite
I'd like to search for a particular string in an SQLite database using
RSQLite, but I'm running into problems constructing the query
properly, because of embedded quotes and parens in the string.
Is there a function that escapes these for me, or some other fixup
that would let me do the queries below? In the real situation I don't
have control over what strings get searched for.