Displaying 20 results from an estimated 69 matches for "itas".
Did you mean:
it's
2010 Jan 28
2
Data.frame manipulation
...y
interested in
simply reducing the additional variables in the data.frame to the first row
of the
corresponding id variable. For example:
id<-c(1,2,2,3,3,3)
es<-c(.3,.1,.3,.1,.2,.3)
mod1<-c(2,4,4,1,1,1)
mod2<-c("wai","other","calpas","wai","itas","other")
data<-as.data.frame(cbind(id,es,mod1,mod2))
data
id es mod1 mod2
1 1 0.3 2 wai
2 2 0.1 4 other
3 2 0.2 4 calpas
4 3 0.1 1 itas
5 3 0.2 1 wai
6 3 0.3 1 wai
# I would like to reduce the entire data.fram...
2009 Oct 04
2
Row to Column help
...3,3)
author<-c("j","k","k","l","l","l")
tmt<-c("cbt","act","dbt","act","act","cbt")
alliance<-c("wai","other","calpas","wai","itas","other")
data<-as.data.frame(cbind(id,author,tmt,alliance))
> data
id author tmt alliance
1 1 j cbt wai
2 2 k act other
3 2 k dbt calpas
4 3 l act wai
5 3 l act itas
6 3 l cbt other
I would like the d...
2006 Feb 14
3
Inf values in a matrix
Hello,
I have some Inf values in a matrix, but I don't want to replace them with
some value but rather remove the rows that contain the Inf values. Also I
would like to record the rows which were removed. Is there an easy way to
do this instead of writing loops over the matrix? Thanks.
Ita Cirovic Donev
2002 Jun 14
1
data.frame - transform
Hi there,
I have a data.frame (pwt6) which I would like to transform:
country year gdp
MEX 1950 2
MEX 1951 5
BOL 1950 4
BOL 1951 12
ITA 1950 45
ITA 1951 2
This should be the result:
year MEX.gdp BOL.gdp ITA.gdp
1950 2 4 45
1951 5 12 2
Right now I have this code (better - no code):
country.label<-names(table(pwt6$country))
result<-data.frame(year=NULL)
for(i in country.label)
?
2004 Feb 02
2
ordering in dotplot
Dear R-friends,
the dataset I am using (data.it) is organized as follows
partner stp btp reg
hk 0.64 1 s
ger 0.27 1 d
tur 0.27 1 s
rom 0.24 1 s-f
por 0.24 1 s
spa 0.23 1 s
gre 0.22 1 d-f
aus 0.17 1 d
uk 0.16 1 s
be 0.16 1 d
arg 0.15 1 s
usa 0.13 1 d-f
fra 0.13 1 s
neth
2006 Jul 07
1
convert ms() to optim()
How to convert the following ms() in Splus to Optim in R? The "Calc" function is also attached.
ms(~ Calc(a.init, B, v, off, d, P.a, lambda.a, P.y, lambda.y,
10^(-8), FALSE, 20, TRUE)$Bic,
start = list(lambda.a = 0.5, lambda.y = 240),
control = list(maxiter = 10, tol = 0.1))
Calc <- function(A.INIT., X., V., OFF., D.,
P1., LAMBDA1., P2., LAMBDA2.,
TOL., MONITOR.,
2005 Dec 23
2
for loop error
I have the following code and I am not sure what's wrong or how to make it
work.
B <- matrix(1,nrow=50,ncol=2)
for (i in 1:length(size.out)){ # length(size.out=2) these
are the two variables
X <- var.range[i,1] # min
Y <- var.range[i,1] # min
ratio <- size.out[,i]
for (j in 1:groups)
2007 Nov 28
1
Order observations in a dataframe
Dear All,
Suppose I have the following dataframe:
country;weight;group
bul;10;1
cze;12;1
grc;12;1
hun;12;1
prt;12;1
rom14;1
fra;29;2
ita;29;2
gbr;29;2
aut;10;3
bel;12;3
The "group" variable denotes the id-number of a group of countries. How can
I re-label the groups in the descending order of their cumulative "weight",
which wound be:
country;weight;group
fra;29;1
ita;29;1
2006 Feb 13
5
search algorithm
Hi!
I have a problem of finding a specific value in a column. For example, I
have a matrix with say 2 columns
X Y
1 -2.0341602 9.036689e-05
2 -1.4287230 1.807338e-04
3 -1.1194402 2.711007e-04
4 -1.0327582 3.614676e-04
5 -0.8130556 4.518344e-04
6 -0.7138212 5.422013e-04
7 -0.6634425 6.325682e-04
8 -0.6512083 7.229351e-04
9
2004 Sep 19
0
MFC compile problem
HI ALL:
I can not compile MFC successfully due to the resource file 'afxres.rc'. Can you give some suggestions to solve this problem or share your experience
on compiling MFC? Thank you.
version of OS:
[ken@Linux80 mfc]$ uname -a
Linux Linux80 2.4.18-14 #1 Wed Sep 4 12:13:11 EDT 2002 i686 athlon i386 GNU/Linux
version of MFC source is the MFC version released with VC 6.0
I compiled it
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:
>
> >
2017 Sep 07
0
ISO3 code to 7 continents names
> On Sep 7, 2017, at 12:21 PM, Miluji Sb <milujisb at gmail.com> wrote:
>
> 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
2007 Mar 11
3
Enable pop3 / pop3 and imap
Dear All,
I'm new to use dovecot for the Mail service...
So, how to enable the mail service ( pop3 / pop2 / imap ) ?
Edward.
2012 Apr 22
10
Assignment problems
The text below is a part of, some work I have to do, which is due in 2 days
and I am strung up with a lot of other stuff, so I was hoping someone would
take 5 mins and help me ??
Here is a part of my data.frame:
year country1 country2 contig comlang pop1 gdp1
pop2 gdp2 rta dist avgflow
1 1992 AUS AUT 0 0 17.4950008 321708.281
2007 May 16
2
Anyone Installed a Digium TE110P or TE120P card in Canada?
The Telco in Canada is been real painful. I was wondering if anyone has
installed a Digium TE1X0P card in Canada and if their Telco was so
difficult.
The Telco will not provide us a service until they see a FCC or DOC
number for the equipment ware are connecting to their service.
If have found "FCC Part 68, ANSI/ITA-968-A, Including Amendment A1 and
A2 Industry Canada CS-03"
2017 Jun 07
2
Help with Elite 800VA usb UPS
Hi, I have tried several drivers for make my Elite UPS working.
With blazer_usb I can contact it, but I have no informations. This is the
best result.
OS: Ubuntu Xenial 16.04.2 LTS
NUT Version: Nut 2.7.2-4Ubuntu1 (Installed from Ubuntu Software Center)
Device name: Elite UPS 800VA (http://www.elit-ups.com/ita/pro_ups.html,
discontinued) I can provider their *not working* linux monitoring tool
2006 Feb 25
1
More on our TODO lit
Hi!
We have a couple more things on our TODO list, it seems... (If we could use the
BTS tracking things would be better) (or we could use the issue tracker on
alioth, for now)
1. xen-utils:
Right now domains get shut down on upgrade... This is ok in a 2.0 -> 3.0
scenario, but it's not in a 3.0.1 -> 3.0.2, where we could avoid that,
probably! Should we perhaps try to avoid that,
2005 Jan 18
0
address statistics
Guten Tag
Im Rahmen einer Studienarbeit an der Hochschule fuer Technik in Rapperswil (HSR), zum Thema SPAM, haben wir
Ihre E-Mail Adresse auf einer CD-ROM gefunden welche bei EBay gehandelt wird (Adresshandel).
Wir haben insbesondere alle E-Mail Adressen von Schweizer Unis und ETHs herausgesucht.
Nun ist es fuer unsere Statistik wichtig, dass wir wissen welche der gefundenen Adressen noch aktiv
2005 Aug 16
3
TAFM
Hi,
I installed this program but I am not able to configure, it does not
want to work.
Someone can help me?
2005 Jan 18
0
address statistics
Guten Tag
Im Rahmen einer Studienarbeit an der Hochschule fuer Technik in Rapperswil (HSR), zum Thema SPAM, haben wir
Ihre E-Mail Adresse auf einer CD-ROM gefunden welche bei EBay gehandelt wird (Adresshandel).
Wir haben insbesondere alle E-Mail Adressen von Schweizer Unis und ETHs herausgesucht.
Nun ist es fuer unsere Statistik wichtig, dass wir wissen welche der gefundenen Adressen noch aktiv