search for: ita

Displaying 20 results from an estimated 69 matches for "ita".

Did you mean: it
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.fra...
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...
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) ? Thanks for any help, Patrick --------...
2004 Feb 02
2
ordering in dotplot
...0.05 1 d bra 0.04 1 s ko 0.006 1 s un -0.009 2 d-f svi -0.022 2 s-f cin -0.040 2 d ru -0.074 2 d-f mex -0.077 2 s ... ... ... ... and plotting it using dotplot, I specified the script as: library(lattice) attach(data.ita) dotplot(reg~stp | partner, data=data.ita, groups=btp, xlab=list("Data - it",cex=1.5),col=c("black","red"),aspect=0.3,as.table=TRUE,xlim=c(-1,1)) detach(data.ita) In the resulting plot the variable "reg" is ordered alphabetically. Instead, I wo...
2006 Jul 07
1
convert ms() to optim()
...Calc <- function(A.INIT., X., V., OFF., D., P1., LAMBDA1., P2., LAMBDA2., TOL., MONITOR., MAX.ITER., TRACE.){ lambda1 <- abs(LAMBDA1.) lambda2 <- abs(LAMBDA2.) P <- lambda1 * P1. + lambda2 * P2. a <- Estimate(A.INIT., X., V., OFF., D., P, TOL., MONITOR., MAX.ITER.) Ita <- OFF. + X. %*% a Mu <- c(exp(Ita)) Wt <- Mu * V. Bt.W.B <- t(X.) %*% (Wt * X.) BtWBplusP <- Bt.W.B + P Rhs <- Bt.W.B %*% a + t(X.) %*% (V. * (D. - Mu)) a <- solve(BtWBplusP, Rhs) Tr <- sum(diag(solve(BtWBplusP, Bt.W.B))) y.init <- D. y.init[D.==0] <...
2005 Dec 23
2
for loop error
...ize.out and col=[min max] span.group.size is defined as row=variables from size.out and col=[span] Now I want to count how many values fall into defined range with if ((X <= ratio[k]) & (ratio[k] >= Y)). This count I need to store which I then later on plot. Thanks. ____________________ Ita Cirovic-Donev
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 gbr;29;1 bul;10;2 cze;12;2 grc;12;2 hu...
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
....kor/afxprint.rc Include/l.kor/afxisapi.rc Include/l.kor/afxolecl.rc Include/l.kor/afxres.rc Include/l.jpn/afxisapi.rc Include/l.jpn/afxdb.rc Include/l.jpn/afxctl.rc Include/l.jpn/afxolecl.rc Include/l.jpn/afxprint.rc Include/l.jpn/afxres.rc Include/l.jpn/afxolesv.rc Include/l.ita/afxdb.rc Include/l.ita/afxolecl.rc Include/l.ita/afxolesv.rc Include/l.ita/afxprint.rc Include/l.ita/afxres.rc Include/l.ita/afxisapi.rc Include/l.ita/afxctl.rc Include/l.fra/afxctl.rc Include/l.fra/afxdb.rc Include/l.fra/afxolecl.rc Include/l.fra/afxprint.rc Include/l.fra/afx...
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 South America. Thanks. Well it does actually: There are two different region codes: First load the package that...
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
...999 102022.352 0 14845.6 4.164985e+01 12 1992 AUS IRL 0 1 17.4950008 321708.281 3.5490999 54272.410 0 16895.0 1.076323e+02 13 1992 AUS ISL 0 0 17.4950008 321708.281 0.2611000 6976.168 0 16443.6 2.190602e+01 14 1992 AUS ITA 0 0 17.4950008 321708.281 56.7976494 1265800.125 0 15855.4 9.683720e+02 15 1992 AUS JPN 0 0 17.4950008 321708.281 124.2289963 3766884.000 0 7827.1 1.026065e+04 16 1992 AUS NLD 0 0 17.4950008 321708.281 15.1780005 348224.562...
2007 May 16
2
Anyone Installed a Digium TE110P or TE120P card in Canada?
...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" thanks to Nabeel a forum users. I now need to know if the statement above is what I need to tell the Telco. As I am not in Canada this make it a bit difficult for me. Your help is greatly appreciated. -----------...
2017 Jun 07
2
Help with Elite 800VA usb UPS
...ve 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 Here is the result from starting upsdrvctl <http://networkupstools.org/docs/man/bcmxcp_usb.html> root at artu:~# upsdrvctl start Network UPS Tools - UPS driver controller 2.7.2 Network UPS Tools - Megatec/Q1...
2006 Feb 25
1
More on our TODO lit
...eremy would like to... For me, no problem at all, but we'll have to sort this out! 4. glibc: Contacting the glibc team is still on our TODO list, and can be done after the release! 5. kernel: Sorting things out with Bastian and the kernel team still pending... 6. wnpp: Should we file an ITA there, now or in one day or two, as consensus on debian-devel seems we should adopt the package, but there are still a couple of things that we might want to wait for before uploading! 7. readme, etc: The other couple of small things I pointed out in some mail replying to -changes... Guido
2005 Jan 18
0
address statistics
...ass wir wissen welche der gefundenen Adressen noch aktiv sind. Aus diesem Grund senden wir Ihnen diese E-Mail. Wichtig: Sie sollen darauf nicht Antworten, es geht nur darum herauszufinden ob die E-Mail Adresse noch existiert, also diese E-Mail nicht rejected wird. Fuer weitere Infos: http://stud.ita.hsr.ch/sw04/sw0403/ Mit freundlichen Gruessen Ch. Hoehn und A. Ruoss <<-----english------->> Hello Within the scope of a studying work at the "Hochschule fuer Technik in Rapperswil" (HSR), with the subject SPAM, have we found your E-Mail Address on a CD-ROM which is...
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
...ass wir wissen welche der gefundenen Adressen noch aktiv sind. Aus diesem Grund senden wir Ihnen diese E-Mail. Wichtig: Sie sollen darauf nicht Antworten, es geht nur darum herauszufinden ob die E-Mail Adresse noch existiert, also diese E-Mail nicht rejected wird. Fuer weitere Infos: http://stud.ita.hsr.ch/sw04/sw0403/ Mit freundlichen Gruessen Ch. Hoehn und A. Ruoss <<-----english------->> Hello Within the scope of a studying work at the "Hochschule fuer Technik in Rapperswil" (HSR), with the subject SPAM, have we found your E-Mail Address on a CD-ROM which is...