search for: try1

Displaying 20 results from an estimated 32 matches for "try1".

Did you mean: try
2011 Jun 25
1
if you start fifa error message comes
...e difficult manager11.exe gent fault and it must be-beeendet We apologize for this unnanehmlichkeiten. The cause may be a problem in the program or may fail to run in wine sein.sie www.appdb.winehq.org tips under the application-seek. " And in the terminal gabs this code: "LoadGuiResrc try1: Screens \ 11WidgetMostImprovedPlayers.xml LoadGuiResrc try1: Screens \ 11WidgetMp3.xml LoadGuiResrc try1: Screens \ 11WidgetNationalTeamMatches.xml LoadGuiResrc try1: Screens \ 11WidgetNotepad.xml LoadGuiResrc try1: Screens \ 11WidgetOutstanding.xml LoadGuiResrc try1: Screens \ 11WidgetReserve.xml...
2007 Jun 21
1
Using the object of character data type as the name of the slot
Dear all, I have a character string object: > chara [1] "The name of first slot" and a list object: > class( try1) [1] "list" what I want to do is to use the chara as a slot's name of "try1". Of course I could do it like: > try1$"The name of first slot" <- matrix("", 3, 4) to create a slot of 3x4 matrix with the name "The name of first slot" H...
2011 Mar 10
2
sum of variables in function
Dear R users, Probably, this is quite a simpe question, but I do not find the proper way to obtain want I need. To explain the problem, I constructed a simple example. Suppose I have the following function: try1<-function(x){ y<-x[1:2] z<-x[3:4] y[1]*(z[1]+z[2])+y[2]*(z[1]+z[2]) } This function will be part of a for loop. This is what I like to obtain for every k: if k=2 try1<-function(x){ y<-x[1:2] z<-x[3:4] y[1]*(z[1]+z[2])+y[2]*(z[1]+z[2]) } if k=3 try1<-function(x){ y<-x[1:3]...
2005 Feb 10
5
Annual cumulative sums from time series
Hello world, I am actually transferring a course in data management for students in biology, geography and agriculture from statistica to R - it works surprisingly well. If anyone is interested in my scratch/notepad (in German language), please see www.hydrology.uni-kiel.de/~schorsch/statistik/statistik_datenauswertung.pdf (pages 40-52) The dataset is:
2008 Nov 13
0
sem and "simple variables"
...s works with many formulations but throws a singularity on others. instead, where ever i use c2 i could just use c1 and dc1 coercing the estimated parameters to be the same. bellow are the two versions of this model, one calculating and using c2 as a simple variable(ram.try2) and the other not(ram.try1). it is likely i have just misunderstood something in the syntax or the formulation. if someone could point me in the right direction i will appreciate it! yours aye, steven northway # longitudinal data model (only part of the full model, but illustrates my trouble) # below are two identical...
2016 Jan 06
4
Cannot remove symlink with missing target
...ormed on a local file system, works fine (i.e. the broken symlink can successfully be removed). I have debugged this on the server side by enabling debug logs in the Synology NAS, and the relevant portion during the "rm b" command on the broken symlink is (the directory is Projects/xx/try1, relative to the SMB share): ../source3/smbd/process.c:1823: [2016/01/06 16:01:50.101627, all 3, pid=17490] process_smb Transaction 495774 of length 116 (0 toread) ../source3/smbd/process.c:1422: [2016/01/06 16:01:50.101795, all 3, pid=17490] switch_message switch message SMBtrans2 (pid 1...
2016 Jan 06
0
Cannot remove symlink with missing target
...stem, works fine (i.e. > the broken symlink can successfully be removed). > > I have debugged this on the server side by enabling debug logs in the > Synology NAS, and the relevant portion during the "rm b" command on > the broken symlink is (the directory is Projects/xx/try1, relative to > the SMB share): > > ../source3/smbd/process.c:1823: [2016/01/06 16:01:50.101627, all 3, > pid=17490] process_smb > Transaction 495774 of length 116 (0 toread) > ../source3/smbd/process.c:1422: [2016/01/06 16:01:50.101795, all 3, > pid=17490] switch_message &...
2010 Nov 28
6
[LLVMdev] RFC: Exception Handling Proposal II
...lue. This involves looking at the value stored in %x at all predecessor points, which is a challenge because one of those predecessors is an arbitrary point within the block %try, and %x actually has two values over that extent. So mem2reg would have to split %try and make a phi in %lp, like so: try1: unwinds to %lp %count = load i32* @count br label %try2 try2: unwinds to %lp call void foo() br label %return lp: %t = phi i32 [ i32 0, label %try1 ], [ i32 %count, label %try2 ] #etc. That's a lot of added complexity for mem2reg (and other transformations that use it as a subrout...
2009 Apr 12
1
looking for one-liner for strsplit and regex
Hi, I have a line such as: myline <- " 0.100000 1.5000 0.6000 538 0.369404" and I would like to put the numbers into a vector. Some combination of tabs and spaces occur between the numbers. I tried: try1 <- strsplit(myline,"[[:blank:]]+") > try1 [[1]] [1] "" "0.100000" "1.5000" "0.6000" "538" "0.369404" The first element is "", which I do not want. I can get rid of the "", but I was won...
2010 Nov 29
0
[LLVMdev] RFC: Exception Handling Proposal II
On Nov 28, 2010, at 3:47 PM, John McCall wrote: > So mem2reg would have to split %try and make a phi in %lp, like so: > > try1: unwinds to %lp > %count = load i32* @count > br label %try2 > try2: unwinds to %lp > call void foo() > br label %return > lp: > %t = phi i32 [ i32 0, label %try1 ], [ i32 %count, label %try2 ] > #etc. > > That's a lot of added complexity for mem2reg (and ot...
2004 Oct 14
2
fidelity of generated raster images (R and perl)
Hi: Goal: use R to turn a matrix of 1's and 0's into a corresponding image (e.g. png) of black and white pixels. Why R: Yes, I can do this more efficiently and precisely with a perl module like Image::PBM. Been there, done that many times, etc. (Just humor me. I'm trying to do this with R for a number of reasons.) Problem:
2010 Nov 29
0
[LLVMdev] RFC: Exception Handling Proposal II
...involves looking at the value stored in %x at all predecessor points, which is a challenge because one of those predecessors is an arbitrary point within the block %try, and %x actually has two values over that extent. So mem2reg would have to split %try and make a phi in %lp, like so: > > try1: unwinds to %lp > %count = load i32* @count > br label %try2 > try2: unwinds to %lp > call void foo() > br label %return > lp: > %t = phi i32 [ i32 0, label %try1 ], [ i32 %count, label %try2 ] > #etc. > > That's a lot of added complexity for mem2reg (and ot...
2003 Oct 22
4
adjacency matrix
Dear R experts, I am new to the list and R software. I need to convert arcview file to Winbugs having R has middle package. Got from friends that it is possible following the steps: 1. Converting arcview shapefile to "cgm clear text file" 2. Downloading "convert.r" to into R 2.1 use source("convert.r") 2.2 convert("filename_cgm") without the
2005 Nov 17
8
Point pattern to grid
Dear all, I'd like to change a point pattern to a grid of cells and use one of the variables as the output. e.g. The point pattern is of a window of (500*500) and several features such as pH, SoilType etc. I like to divide it into a grid with cell size 5*5, and use the mean of the point values falling inside the cell as the output. Is there any package in R working with this? Thanks in
2003 Jul 09
0
model selection in lme when corARMA is assumed
...n To briefly describe my data: My data is health effect measurements (y) and personal exposure to ozone and some other pollutants (x1,x2,x3,...). For each of the totally 5 subjects, 3 weeks' daily data were available with some missing values. To pool the 5 subjects together, I use lme in R as try1 <- lme(y~x1+x2+x3,random=~1|sub,na.action= na.exclude). Is it proper to do so? (only intercept will be treated as random) If the initial model contain 8 variables with 3 of them insignificant. My first step would be to try various corARMA possibilities. There are several possible results: &gt...
2005 Jun 03
2
Dirty Rotten Hack. (reversing tickmarks on axes?)
...h of number-of-bytes transferred and stored. Since we chargeback on the same basis (price per MB this, price per KB that) the same chart with a different scale can be used to communicate bytes and dollars. I set about trying to accomplish this like so: http://nersp.nerdc.ufl.edu/~asr/media/r-foo/try1.png Those axes are a little messy. I tried nudging them around http://nersp.nerdc.ufl.edu/~asr/media/r-foo/try2.png which is better but not good. What I really want to do is tell my axis() function to reverse the tick direction: put your ticks and labels "inside" the graph. Somethin...
2003 Aug 14
2
FW: CIFS mount problem on Linux
...chine (the linux kernel supports cifs). > Linux -- Red Hat 7.3 > Linux Kernel -- 2.4.20-18.7XFS1.30pre2smp > Linux CIFS Client version -- 0.8.2 > > When i try to cifs mount a share ISUXXX, from Machine <IPAddress>, on my linux machine i see the below problem: > > Try1: > mount.cifs //<IPAddress>/ISUXXX /someMountPoint -o username=<userName>,password=<passwd> > ---> My linux box starts hanging ! Does not take any mouse, keyboard events. > The machine seems to be alive (i can ping it) > > Try2: > mount -t cifs //...
2004 Sep 15
7
Splitting vector into individual elements
...offred.rgb[2], offred.rgb[3], names = "offred") ## Desired style offred.col <- rgb(silver.bullet(offred.rgb), names = "offred") Neither of my attempts gets it right. silver.bullet.try1 <- function(x) { expr <- cat(x, sep = ",") return(parse(text = expr)) } silver.bullet.try2 <- function(x) { expr <- expression(cat(x, sep = ",")) return(eval(expr)) } ------------------------------------------------------...
2004 Feb 25
2
writing polygons/segments to shapefiles (.shp) or other ArCGIS compatible file
I am not sure a previous e-mail reached the list (no mail aknowledgement from R-boundle etc.). The question was how to write polygon or segment coordinates into a shapefile set or any other ArcGIS supported format. The library shapefiles seems to do something but the documentation is a bit beyond of my mind.... and I cannot get the meaning of the functions write**** and its application to the case
2013 Mar 14
1
[virt-tools-list] C'ant migrate with virt-manager or virsh
On 03/14/2013 03:17 AM, Digvijay wrote: > [root at node0 ~]# virsh migrate --live try1 qemu+ssh://root at 100.100.102.106/system > --unsafe > root at 100.100.102.106's password: > error: operation failed: migration job: unexpectedly failed > error: Reconnected to the hypervisor > CC-ing libvirt-users I think that virsh command should work. Look at /var/log/libv...