search for: north

Displaying 20 results from an estimated 2287 matches for "north".

Did you mean: worth
2012 Feb 11
0
oooo00077 Virginia vs North Carolina live free Top 25 NCAA Basketball Watch Online HD on Pc
Watch Virginia vs North Carolina live free Top 25 NCAA Basketball Online HD on Pc Enjoy the most competitive NCAA Basketball match between Virginia vs North Carolina live online on your PC. This is the best online sports coverage TV. You can watch all the matches of the season live by using this online sports TV 11th, Feb...
2009 Feb 09
2
Generating new variable based on values of an existing variable
...d searching the r-help archives) to no avail. What I'd like to do is to generate a new variable within a data frame, the values of which are dependent upon the values of an existing variable within that data frame. Assume that I have the following data: mydf<-data.frame(region=c(rep("North", 5), rep("East", 5), rep("South", 5), rep("West", 5))) Assume, in addition, that I have a factor vector with four values (I actually have a factor with almost two-hundred values): element<-c("earth", "water", "air", "fire&q...
2007 Sep 04
3
variable format
Okay, I want to do something similar to SAS proc format. I usually do this... a <- NULL a$divisionOld <- c(1,2,3,4,5) divisionTable <- matrix(c(1, "New England", 2, "Middle Atlantic", 3, "East North Central", 4, "West North Central", 5, "South Atlantic"), ncol=2, byrow=T) a$divisionNew[match(a$divisionOld, divisionTable[,1])] <- divisionTable[,2] But how do I handle the case where... a$div...
2008 Jan 29
5
pivot table in R
Hello, I'm struggling with an elementary problem with R. I have a simple data frame such as this one giving the number of accidents subdivided by sex, age and region. sex age region no_of_accidents F young north 10 F young south 12 F old north 5 F old south 7 M young north 24 M young south 30 M old north 12 M old south 17 and I would like to build a pivot table, e...
2012 Dec 13
2
abline of an lm fit not correct
Hello fellow R-users,   I’m stuck with something i think is pretty stupid, but i can’t find out where i’m wrong, and it’s turning me crazy!   I am doing a very simple linear regression with Northing/Easting data, then I plot the data as well as the regression line :   > plot(x=Dataset$EASTING, y=Dataset$NORTHING) > fit <- lm(formula = NORTHING ~ EASTING, data = Dataset) > abline(fit) > fit   Call: lm(formula = NORTHING ~ EASTING, data = Dataset)   Coefficients: (Intercept)  ...
2008 Jun 23
3
subset with multiple criteria
This should be theoretically very simple, but I dont get the elegant answer (without looping). I've got a long (thousands of rows) data frame: > E.coor[1:10,] east north dat 1 582650 4248850 0.8316848 2 582750 4248850 0.7230272 3 582850 4248850 0.3250818 4 582950 4248850 0.6144006 5 583050 4248850 0.8706312 6 583150 4248850 0.2149651 7 583250 4248850 0.1659519 8 583350 4248850 0.2145174 9 583450 4248850 0.1615151 10 583550 4248850 0.9370766 and need...
2009 Feb 27
1
cross tabulation: convert frequencies to percentages
Hello, might be rather easy for R pros, but I've been searching to the dead end to ... twsource.area <- table(twsource, area, useNA="ifany") gives me a nice cross tabulation of frequencies of two factors, but now I want to convert to pecentages of those absolute values. In addition I'd like an extra column and an extra row with absolute sums. I know, Excel or the
2006 Mar 06
2
Problem getting two x200p cards working on 1.2.4
...divert_blk for non-ethernet device sit0 eth0: no IPv6 routers present Freed a Wildcard Unregistered Tormenta2 Zapata Telephony Interface Unloaded Zapata Telephony Interface Registered on major 196 Zaptel Version: Echo Canceller: KB1 Registered Tormenta2 PCI Registered tone zone 0 (United States / North America) Registered tone zone 0 (United States / North America) Registered tone zone 0 (United States / North America) Registered tone zone 0 (United States / North America) ACPI: PCI interrupt 0000:02:01.0[A] -> GSI 22 (level, low) -> IRQ 201 Failed to initailize DAA, giving up... wcfxo: pro...
2008 Oct 13
3
lattice panel question
Dear R users, How to change lattice panel label/text from the automatically generated label (based on the conditioning) to our own set of label? for example: someStuff <- data.frame(area = rep(c("SOUTH", "NORTH", "EAST", "WEST"), each = 25), group = rep(c("A","B","C","D"), each = 5), mytime = rep(1:4), val1 = sample(1:100, size=100, replace=TRUE), val2 = sample(1:100, size=100,...
2005 Jun 25
1
Confidence interval bars on Lattice barchart with groups
...,11,12), year=as.factor(c(1998,1998,1998,1998,1998,1998,1998,1998,1998,1998, 1999,1999,1999,1999,1999,1999,1999,1999,1999,1999, 2000,2000,2000,2000,2000,2000,2000,2000,2000,2000, 2001,2001,2001,2001,2001,2001,2001,2001,2001,2001)), geog_area=c('North','South','East','West','Middle', 'North','South','East','West','Middle', 'North','South','East','West','Middle', 'North','South',...
2009 Dec 04
2
[ggplot2] Wind rose orientation
Aloha all, I love using ggplot. It took a while to get used to the grammar of graphics, but it is starting to get easy now that I am thinking in a more structured way. A question. I'm making a wind rose that I'd like to be oriented with due north straight up. I've discovered that the orientation is sensitive to how north is represented. When north is represented as 0, the orientation looks to be shifted just a bit counter-clockwise, perhaps 10 degrees. When north is represented as 360, the plot is shifted clockwise, but past...
2010 Mar 05
2
How to assign week numbers to a time-series
...1 2 MORN 1 101 WALNUT.CK 185 05 01 2010 SAT 1 2 MORN 1 102 LAMPE 369 05 01 2010 SAT 1 2 MORN 1 103 EAST.AVE 553 05 01 2010 SAT 1 2 MORN 1 104 NORTH.EAST 737 05 01 2010 SAT 1 2 AFTN 2 101 WALNUT.CK 921 05 01 2010 SAT 1 2 AFTN 2 102 LAMPE 1105 05 01 2010 SAT 1 2 AFTN 2 103 EAST.AVE 1289 05 01 2010 SAT 1 2...
2005 May 26
1
Using zap channels on 2 different servers
Let say I have a server located in Europe and one in North America. The 2 servers are connected together with iax2. Both server are connected to phone lines in there own country. If I want that when a user call a north american phone number from the server in Europe it use a zap channel on the server located in North America and also if someone in...
2000 Nov 22
1
Configuration Trouble
I have succeeded in getting two tinc1.0pre3 hosts to connect, but I can't ping one from the other. I can ping the local tap interfaces. tcpdump shows that icmp echo requests are received by the other host, but no replies are sent. The two hosts are North and South. It is the same pinging North to South and South to North. The hosts are configured as follows: South: Debian 2.2 /usr/local/etc/tinc/tinc.conf: TapDevice = /dev/tap0 Name = South PrivateKey = blahblahblah /usr/local/etc/tinc/hosts/North: PublicKey = blahblahblah Subnet = 10.1.0.0/24...
2017 Sep 07
2
ISO3 code to 7 continents names
df is a data frame consisting of one variable (iso3 codes) such as USA RUS ARG BGD ITA FRA Some of these iso3 codes are repeated and I would like the corresponding continent name, the countrycode package does not seem to distinguish between North and South America. Thanks. Sincerely, Milu On Thu, Sep 7, 2017 at 9:00 PM, David Winsemius <dwinsemius at comcast.net> wrote: > > > On Sep 7, 2017, at 11:36 AM, Miluji Sb <milujisb at gmail.com> wrote: > > > > Dear all. > > > > Is it possible to conv...
2017 Sep 07
0
ISO3 code to 7 continents names
...> df is a data frame consisting of one variable (iso3 codes) such as > > USA > RUS > ARG > BGD > ITA > FRA > > > Some of these iso3 codes are repeated and I would like the corresponding continent name, the countrycode package does not seem to distinguish between North and South America. Thanks. Well it does actually: There are two different region codes: First load the package that has countryExData. I'm presuming this is: library(rworldmap) > table(countryExData$EPI_regions) Central and Eastern Europ East Asia and the Pacific...
2000 Dec 06
2
Expression in plot text
I'd like to put a degree symbol in the title of a plot. Something like: plot(1,main=expression("Data at " * 45 * degree * " North")) That works fine, but I like the 45 to be the value of a variable, instead of a constant, an in: lat <- 45 plot(1,main=expression("Data at " * lat * degree * " North")) But this doesn't work of course, the graph title is "Data at lat° North". If I try...
2016 Jun 08
0
unable to connect with virt-v2v to VMWare
Hi, I am trying to import and convert some VMWare guests from a VMWare cluster with vCenter version 6, to a KVM (oVirt) host. The KVM node (RHEL 7.2) has virt-v2v 1.28.1, though I've also tried using Fedora 23 which has 1.32.4. The details are: vCenter server: nssesxi-mgmt Datacenter name: North Sutton Street esxi server which runs the VM: nssesxi-mgmt04 folder name: Systems VM name: wvm2 cluster name: nssesxi Unfortunately, spaces were put in the name of the datacenter, so I escape them with %20 I authenticate against a AD domain (ARDA) with user 'cam' So the final URI is const...
2009 Jul 01
1
Map projections - converting latitude/longitude to eastings and northings
I am trying to set up a Grass project and need to set up the region so that I can view the map. I can look at a map and find the lat/lon, but the map projection is in UTM NAD38 WGS84 and I need to set the eastings and northings. Is there a package that will help me calculate this in R. thanks -- Stephen Sefick Let's not spend our time and resources thinking about things that are so little or so large that all they really do for us is puff us up and make us feel like gods. We are mammals, and have not exhauste...
2007 May 21
1
help with this indexing
Hi all, Let's say I have a long data frame and a short one, both with three colums: $east, $north, $value And I need to fill in the short$value, extracting the corresponding value from long$value, for coinciding $east and $north in both tables. I know the possibility: for (i in 1:length(short$value)){ short$value[i] <- long$value[long$east==short$east & long$north==short$north] } How...