search for: gwp_max

Displaying 6 results from an estimated 6 matches for "gwp_max".

Did you mean: gpc_max
2009 Aug 10
2
(sans objet)
...- read.csv2("c:/GWPMax1.csv",sep=",") > M <- merge(data1, data2, by.x = "Policy.Number", by.y = "Policy.Number") > nrow(data1) [1] 20 > nrow(M) [1] 12 > NbOfPolicyWithoutGWPMax <- nrow(data1)-nrow(M) > NbOfPolicyWithoutGWPMax [1] 8 > M$GWP_Max <- as.numeric(as.character(M$GWP_Max)) > m1 <- M[(M[,25]> 0 & M[,25]<1000) ,] > nrow(m1) [1] 5 > m2 <- K[(K[,25]>1000 & K[,25]<3000),] > nrow(m2) [1] 3 > m3 <- K[(K[,25]>3000),] > nrow(m3) [1] 4 > and i want to have in output a table like th...
2009 Aug 18
1
create a table in the console!!
HI I want to do a table with R (in the console) GWP_Max NumberOfPolicies No_GWPMax 8 [0-1000] 4 [1000-3000] 3 [> 3000] 5 i begin by calculate the number of policies in each class :  Data1 <- read.csv2("c:/Total1.csv", sep=",") > Data2 <- read.csv2("c:/GWPMax1.csv",sep=",")[1:20,1:2] > M <-...
2009 Aug 10
2
extraction of elements in a matrice???
i have a matrice M and i want to extract only rows where GWP_Max is positif and smaller than 1000 but it is given me this:!!!??? > M    Policy.Number   GWP_Max 1        4001023       500 2        4001025       700 3        4001028       600 4        4001062    2335.1 5        6100001      2000 6     1060000006      1400 7     1060000009     77.19 8     106000...
2009 Aug 18
1
Tr : create a table in the console!!
----- Message transféré ---- De : Inchallah Yarab <inchallahyarab@yahoo.fr> À : r-help@r-project.org Envoyé le : Mardi, 18 Août 2009, 16h26mn 20s Objet : create a table in the console!! HI I want to do a table with R (in the console) GWP_Max NumberOfPolicies No_GWPMax 8 [0-1000] 4 [1000-3000] 3 [> 3000] 5 i begin by calculate the number of policies in each class :  Data1 <- read.csv2("c:/Total1.csv", sep=",") > Data2 <- read.csv2("c:/GWPMax1.csv",sep=",")[1:20,1:2] > M <-...
2009 Aug 10
3
how use cat() function?
...uot;c:/GWPMax1.csv",sep=",") > M <- merge(data1, data2, by.x = "Policy.Number", by.y = "Policy.Number") > nrow(data1) [1] 20 > nrow(M) [1] 12 > No_GWPMax <- nrow(data1)-nrow(M) > (NbOfPolicyWithoutGWPMax <- nrow(data1)-nrow(M)) [1] 8 > M$GWP_Max <- as.numeric(as.character(M$GWP_Max)) > class1 <- M[(M[,25]> 0 & M[,25]<1000) ,] > NbpolicyClass1 <- nrow(class1) > class2<- K[(K[,25]>1000 & K[,25]<3000),] > NbpolicyClass2 <-  nrow(class2) > class3 <- K[(K[,25]>3000),] > NbpolicyClass3 &...
2009 Aug 18
1
function merge()
...3    1060000006         UK     BNL 4       4001025         CH     BNL 5      6.00E+13        USA     BNL 6       6100001         UK     BNL 7       4001028        USA     BNL > Data2 <- read.csv2("c:/GWPMax1.csv",sep=",") > (Data2 <- Data2[1:7,1:2])   Policy.Number  GWP_Max 1       4001023   500.00 2       4001024 10593.54 3       4001025   700.00 4       4001026     0.00 5       4001027  3621.25 6       4001028   600.00 7       4001029  7588.27 > (m <- merge(Data1,Data2, by.x = "Policy.Number",by.y = "Policy.Number"))   Policy.Number AXA.Ent...