Displaying 20 results from an estimated 2000 matches similar to: "Handling repeated values differently"
2008 Dec 08
1
Battlefeild 2- new issue?
ubuntu 8.1
Nvidia 9600GT.
Installed BF2 with no problems.
Go to run it- first screen comes up, screen blinks, reverts to desktop, changing resolution from 1440x900 to 800x600. so basically it wont even start
Ive already tried everything i found in previous forums and appdb (i think ive tried it all)
Ive changed the video.con file to read 1024x768 at 60 in the appropiate file. Ive tried
2008 Jun 04
3
create many variables at one time~
I need to create 100 variable ,whose name is id.1,id.2~~~~id.100
then I need to let a vector say id<-c(id.1,id.2....id.100)
any easy way to do this?
thanks a lot~
[[alternative HTML version deleted]]
2008 Nov 08
6
Running Wine in Window Mode
I seem to be able to run a video game in 1024x867 (what ever it is) as a window, by selecting the window mode button in the game. However, i can not run the game in window mode with a resolution set about 1024x867.
What is going on? I am assuming i am missing something in wine or the game that does not allow the video game to be run in any resolution greater than 1024x867 in window mode.
2010 Feb 15
7
No keyboard input when running RollerCoaster Tycoon 3
Be forewarned, I am new to Linux. I am using Ubuntu 9.10 (Karmic Koala). I have installed wine (1.1.38) and I am able to run RollerCoaster Tycoon 3 both with and without a virtual desktop. It runs with no problems except for the fact that it does not receive keyboard commands! I have looked all over the Internet and still have yet to find a solution. Someone help, please!
I haven't
2010 Sep 20
2
invalid 'row.names' length error when running scatterplots or plot in R Commander
Hello,
I teach statistics and use R Commander for teaching. I have 2 students
out of 169 that can't get scatterplots or plot to work. I have had them
update packages, restart R/R Commander/their computers and even
reinstall R/R Commander. One is using Windows 7 on a new pc and the
other is a pc user (not sure the OS). They are both using R2.11.1 and R
Commander 1.6-0.
The data look like
2008 Mar 09
1
Re: wine don't handle hard coded resolutions & refresh rates
Nate Homier wrote:
> I think I get it. So I added the modeline:
> Modeline "1024x768 at 50" 51.85 1024 1056 1248 1280 768 784 791 807
>
> But it still don't work. Running winedebug gives:
> trace:x11settings:X11DRV_ChangeDisplaySettingsEx width=1024 height=768
> bpp=32 freq=50 (XRandR)
> err:x11settings:X11DRV_ChangeDisplaySettingsEx No matching mode found
2009 May 09
4
Application to run in proper resolution?
Im trying to run homeworld cataclysm, but im having 2 issues with it.
1. I cannot set it to my computers resolution. It only goes to 1280x1024.
I need to set it to 1680x1050, however i cannot set this in game. What to do?
2. the game seems to run a littly chopily. Is there anything i should enable in wine to make it better ? And if so where?
Thanks Dom
2013 Jan 03
2
Sas by function in R
Hello,
It's an alternative to use SAS by function in R?
I want to plot d histograms by plot.from example bellow:
Thank you!
plot d
1 1 16.3
2 1 25.0
3 1 57.8
4 1 17.0
5 2 10.8
13 2 96.4
17 3 76.0
18 3 32.0
19 3 11.0
20 3 11.0
24 3 106.0
25 3 12.5
21 4 19.3
22 4 12.0
26 4 15.0
27 5 99.3
32 7 11.0
36
2006 Mar 02
1
Curious subsetting behavior
I have a simple vector, called tmp that I want to subset based on another
vector called vec. Everything works as expected except for below where the
subsetting returns something other than the original data. Any ideas?
> vec <- c(1,2,3,4,5,59,60,27,32,21)
> tmp
[1] 1.0 1.1 2.0 2.1 2.2 3.0 3.1 4.0 5.0 5.1 6.0 7.0 8.0 8.1
9.0
[16] 9.1 9.2 10.0 10.1 11.0 12.0 13.0 14.0
2013 Jul 17
2
error message in gev
Hi r-users,
I would like to use gev and my data (annual rainfall ) is as follows:
> head(dat,20) A B C D E F G H I J
1 45.1 41.5 58.5 50.1 46.0 49.1 37.7 49.1 59.8 54.0
2 50.3 39.8 49.4 56.4 49.4 48.8 42.1 49.8 49.4 58.3
3 41.7 39.3 44.6 39.1 35.7 41.5 40.8 40.8 38.5 45.6
4 50.7 33.9 48.4 28.2 35.5 39.1 61.4 17.0 30.7 38.3
5 39.3 30.6 46.9 23.8 25.8
2008 Jan 21
3
'matrix' returns integer instead of decimal
R-helpers:
I am experiencing some odd behavior with the 'matrix' function that I have
not experienced before and was wondering if there is something that I was
missing in my code.
---------------------------------
> sessionInfo()
R version 2.6.1 (2007-11-26)
i386-pc-mingw32
locale:
LC_COLLATE=English_United States.1252;LC_CTYPE=English_United
States.1252;LC_MONETARY=English_United
2011 Nov 15
5
Convert back to lower triangular matrix
Given a vector;> ab = seq(0.5,1, by=0.1)> ab[1] 0.5 0.6 0.7 0.8 0.9 1.0
The euclidean distance between the vector elements is given by the lower triangular matrix > dd1 = dist(ab,"euclidean")> dd1 1 2 3 4 52 0.1 3 0.2 0.1 4 0.3 0.2 0.1 5 0.4 0.3 0.2 0.1 6 0.5 0.4 0.3 0.2 0.1
Convert the lower triangular matrix to a full
2010 Feb 28
4
Reducing a matrix
I wish to rearrange the matrix, df, such that all there are not repeated x values. Particularly, for each value of x that is reated, the corresponded y value should fall under the appropriate column. For example, the x value 3 appears 4 times under the different columns of y, i.e. y1,y2,y3,y4. The output should be such that for the lone value of 3 selected for x, the corresponding row entries
2011 Oct 14
3
Split a list
I have a list of dataframes i.e. each list element is a dataframe with three columns and differing number of rows. The third column takes on only two values. I wish to split the list into two sublists based on the value of the third column of the list element.
Second issue with lists as well. I would like to reduce each of the sublist based on the range of the second column, i.e. if the range of
2009 Mar 28
3
No Video in Video Game
I am installing the original Stronghold Crusader when I install it using wine all seems to go well until I actually start the game then when the aspect ratio changes for the game there is no video but from what I can hear when I move my mouse everything else seems to be responding normally.
I thought it might be related to the nVidia drivers that were installed by the "hardware drivers
2008 Nov 05
2
date translate in R from SAS
En indlejret tekst med ukendt tegns?t er blevet fjernet...
Navn: ikke tilgængelig
Url: <https://stat.ethz.ch/pipermail/r-help/attachments/20081105/3106f04e/attachment.pl>
2009 Jan 12
9
GTA San Andreas Issue
I trying play GTA San Andreas and it is returning " Cannot find 800x600x32 video mode". I worried so my wine Games pointed for a Working Directory that register a dosdevice instead of drive_c. Thereby I'm getting" /home/normal/.wine/dosdevices/c:/Program Files/Rockstar Games/GTA San Andreas" path and "win:EnumDisplayDevicesW ((null),0,0x177f6dc,0x00000000), stub!"
2010 Feb 25
2
Rearranging entries in a matrix
I have a matrix, called data. I used the code below to rearrange the data such that the first column remains the same, but the y value falls under either columns 2, 3 or 4, depending on the value of z. If z=1 for example, then the value of y will fall under column 2, if z=2, the value of y falls under column 3, and so on.
data
x y z
[1,] 50 13 1
[2,] 14 8 2
[3,] 3 7 3
[4,] 4 16 1
[5,] 6
2008 Feb 15
2
wire.frame tick labels from matrix
Dear R Users, close to the end of this I used wireframe to create a 3D plot
from a matrix. The x and y axis tick labels (1-6) for each were created
from the matrix being a 6X6 matrix. I need the axis tick labels to be the
row and column headings which you can see in the output (mat.x). I have
tried several work arounds, but they have not been successful.
Thanks in advance. keith
rm(list=ls())
2013 Aug 30
1
Outliers Help
This is my a part of my data set
> D[1:15,c(1,5:10)]
X. media IE.2005 IE.2006 IE.2007 IE.2008 IE.2009 IE.2010
1 1108 22.00000 60.0 39 4.0 8.0 16.0 5.0
2 1479 110.00000 NA NA 53.0 1166.0 344.8 110.0
3 1591 86.60000 247.0 87 95.0 94.0 81.0 76.0
4 3408 807.00000 302.0 322 621.0 1071.0 1301.0 1225.0