search for: assault

Displaying 20 results from an estimated 76 matches for "assault".

2012 Aug 21
1
make check fails two tests on RHEL 6 build
...uot; "list" Testing examples for package ?stats? comparing ?stats-Ex.Rout? to ?stats-Ex.Rout.save? ... 6325c6325 < Grand Mean: 291.5937 --- > Grand Mean: 291.5938 12674c12674 < Murder -0.536 0.418 0.341 0.649 --- > Murder -0.536 0.418 -0.341 0.649 12675c12675 < Assault -0.583 0.188 0.268 -0.743 --- > Assault -0.583 0.188 -0.268 -0.743 12676c12676 < UrbanPop -0.278 -0.873 0.378 0.134 --- > UrbanPop -0.278 -0.873 -0.378 0.134 12677c12677 < Rape -0.543 -0.167 -0.818 --- > Rape -0.543 -0.167 0.818 14358c14358 < Grand Mean: 291.5937...
2008 Jul 15
3
playwith package crashes on Mac
...ywith_0.9-3 cairoDevice_2.8 gWidgetsRGtk2_0.0-35 RGtk2_2.12.5-3 gWidgets_0.0-28 [6] lattice_0.17-10 loaded via a namespace (and not attached): [1] gridBase_0.4-3 tools_2.7.1 Making links in per-session dir ... done > rownames(USArrests) <- state.name > playwith(plot(Assault ~ UrbanPop, data=USArrests, + xlab="Percent urban population, 1973", + ylab="Assault arrests (per 100,000), 1973")) *** caught bus error *** address 0xa8, cause 'non-existent physical address' Traceback: 1: .Call(L_newpage) 2: grid.newpage() 3: playNewPlot(...
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 solid color (solar flares does work though). This is from the log: fixme:ntoskrnl:KeInitializeTimerEx 0x1110d8 0 fi...
2002 Jan 27
5
EPS->LaTeX problem
...xtwidth}{\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 using the syntax in R: data(USArrests) postscript(file="crime.eps") plot(USArrests$Murder, USArrests$Assault) abline(lm(USArrests$Assault ~ USArrests$Murder)) dev.off() Thanks for any advice. This is rather urgent, as I'm trying to use it for a lecture in my class Monday morning. ap ---------------------------------------------------------------------- Andrew J Perrin - andrew_perrin at unc.edu - h...
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 pr...
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
...ted 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 size | Date Time | Name -----------+---------------------+------------- 474542 | 31.08.2005 02:17:00 | WXP.ucs 204236580 | 31.08.2005 01:49:50 | WXPDataSoundSpeech.sga 355 | 31.08.2005 01:38:22 | WXPDataLoc.sga 5626 | 31.08.2005 01:38:34 | WXPDataKeys.sga 115...
2006 Dec 26
3
McNemar test in R & SPSS
...ping 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 group yes no preMHT 128 331 postMHT 29 430 > mcnemar.test(mctest,correct=F) McNemar's Chi-squared test data: mctest McNemar's chi-squared = 253.3444, df = 1, p-value < 2.2e-16 SPS...
2008 Jan 13
1
What is the 'scale' in princomp() function?
...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 14.329285 9.272248 > sd(USArrests) Murder Assault UrbanPop Rape 4.355510 83.337661 14.474763 9.366385 Why 'restpc$scale' is different from 'sd(USArrests)'? felix
2008 Mar 06
0
Help with colinearity problem in multiple linear regression
...red for the parallelism technique to work. Does anyone have any pointers how this might be accomplished? Thanks, Caleb ------- # Bigger example # Introduce artificial colinearity to test case P = cbind(USArrests[2]*2, USArrests) names(P) = c("Introduced", "Murder", "Assault", "UrbanPop", "Rape") # Split the data into partitions to be calculated separately # In the real case the full data would have been too large and # each instance would have received just a chunk of data. P1 = P[1:25,] P2 = P[26:50] # Partition 1 - calculated on host 1 P1_...
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) plot(prcomp(USArrests)) summary(prcomp(USArrests, scale = TRUE)) biplot(prcomp(USArrests, scale = TRUE)) Thanks a lot, milton [[alternative...
2007 Aug 20
1
SimpleTextRecipes
...line => "this is the append test", } prepend_if_no_such_line { prependtest: file => "/puppetTestFile", line => "this is the prepend test", } } I always get this success in messages: Aug 20 14:41:57 assault puppetd[16036]: (//assault/filetest/prepend_if_no_such_line[prependtest]/Exec[/usr/bin/perl -p0i -e ''s/^/this is the prepend test /;'' ''/puppetTestFile'']/returns) executed successfully Aug 20 14:41:57 assault puppetd[16036]: (//assault/filetest/append_if_no_such_l...
2007 Jun 27
1
Condensed PCA Results
...st the regression coefficients when you carry out the command. When I carry out PCA on R, typically I get: Standard deviations: [1] 83.732400 14.212402 6.489426 2.4827900 Rotation: PC1 PC2 PC3 PC4 Murder 0.04170432 -0.04482166 0.07989066 -0.99492173 Assault 0.99522128 -0.05876003 -0.06756974 0.03893830 UrbanPop 0.04633575 0.97685748 -0.20054629 -0.05816914 Rape 0.07515550 0.20071807 0.97408059 0.07232502 I want to get only: PC1 PC2 PC3 PC4 Murder 0.04170432 -0.04482166 0.07989066 -0.99492173 Assa...
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 Murder -0.5358995 0.4181809 -0.3412327 0.64922780 Assault -0.5831836 0.1879856 -0.2681484 -0.74340748 UrbanPop -0.2781909 -0.87280...
2010 Nov 25
1
RODBC
...nnel , "USArrests", rownames = "state") # get the lot foo <- cbind(state=row.names(USArrests), USArrests)[1:3, c(1,3)] foo[1:3,2] <- 9999 sqlUpdate(accesChannel , foo, "USArrests") The sqlSave and sqlFetch command seem to work fine. > foo state Assault Alabama Alabama 9999 Alaska Alaska 9999 Arizona Arizona 9999 > sqlUpdate(accesChannel , foo, "USArrests") Error in sqlUpdate(accesChannel, foo, "USArrests") : cannot update 'USArrests' without unique column > I am using R 2.12.0(2010-10-15) Us...
2007 Feb 06
3
Warhammer: Dawn Of War Winter Assault Expansion (MSI problem)
...itch_to_stack+0x17() in libwine.so.1 (0x00000000) 0x7eb4231a msi_dialog_find_control+0x4a in msi: movzwl 0x38(%ecx),%edx I'm trying to copy the files by hand; I used cabextract to get them out of the CAB files, but now I need to know where to put them. These files are: Viewing cabinet: WinterAssault1.cab File size | Date Time | Name -----------+---------------------+------------- 474542 | 31.08.2005 02:17:00 | WXP.ucs 204236580 | 31.08.2005 01:49:50 | WXPDataSoundSpeech.sga 355 | 31.08.2005 01:38:22 | WXPDataLoc.sga 5626 | 31.08.2005 01:38:34 | WXPDataKeys.sga 115886...
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 Set a string value under that named "VideoMemorySize" and set it to 256, the MOHA...
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
...currently have this ugly inconsistency: > str(USArrests ^ 0.5) num [1:50, 1:4] 3.63 3.16 2.85 2.97 3 ... - attr(*, "dimnames")=List of 2 ..$ : chr [1:50] "Alabama" "Alaska" "Arizona" "Arkansas" ... ..$ : chr [1:4] "Murder" "Assault" "UrbanPop" "Rape" > str(sqrt(USArrests)) 'data.frame': 50 obs. of 4 variables: $ Murder : num 3.63 3.16 2.85 2.97 3 ... $ Assault : num 15.4 16.2 17.1 13.8 16.6 ... $ UrbanPop: num 7.62 6.93 8.94 7.07 9.54 ... $ Rape : num 4.6 6.67 5.57 4.42 6.37 .....
2004 Nov 25
3
Searching for a string in RSQLite
...ta(USArrests) > dbWriteTable(con, "USArrests", USArrests, overwrite = T) [1] TRUE > state <- "Wyoming" # this works fine: > dbGetQuery(con, paste("SELECT * from USArrests where row_names='",state,"'",sep="")) row_names Murder Assault UrbanPop Rape 1 Wyoming 6.8 161 60 15.6 # Buf if the search string contains characters that SQL interprets, I # get an error > state <- "messy: ' (" > dbGetQuery(con, paste("SELECT * from USArrests where row_names='",state,"'",sep...