similar to: Save File after order

Displaying 20 results from an estimated 500 matches similar to: "Save File after order"

2012 Jun 25
4
graph displays
Good Afternoon, I'm trying to create a graph that displays the best way the following information. ??? For instance organized by bar graph, A, B, C Source X1000s X600s X500s X250s X100s X50s X10s X5s X3s X1s 1 A 47 63 75 116 125 129 131 131 131 131 2 B 37 64 45 11 25 19 61 131 186 186 3 C 17 62 25 66 12 29 91 171 186
2012 Apr 06
4
Order sapply
Good Afternoon, I have the following code, but it seems that something must be doing wrong, because it is giving the results I want. The idea is to create segments while the value of Commutation is less than 1000. for example, from the small set of data below text=" val_user pos v v_star v_end commutation v_source v_destine 1 1 96-96 1173438391 1173438391 0
2012 Mar 15
1
Subtract Date Between columns
Hello I have this little dataset, my goal is create one column in the data.frame with between the diference DataTime and Duration. I'm using the next code to make do this TIME_STAMP SESSIONTIME Time TimeStart 1162343932 8320 2006-10-31 19:01:34 2006-10-31 16:42:54 1162343215 592 2006-10-31 19:02:04 2006-10-31 18:52:12 1162341465 11875
2012 Mar 23
1
Read File for Matrix with rownames
Good morning, Good morning, I'm trying to read the file into an array, with the following code. A<- as.matrix(read.csv("~/Desktop/Results/Cfile.csv", header = FALSE, sep=",")) The content of the file " ","1","2","3","4" "1", 484,43,67,54 "2",54,35,67,34 "3",69,76,78,55
2012 Mar 27
2
drawing the graph with many nodes
Good morning, I'm trying to draw a graph, and I'm using the following code. test.matrix<-read.table("~/Desktop/Results/testgephi.csv", header = T, sep=",") colnames(test.matrix) <- gsub("X", "", colnames(test.matrix)) #drop first column drops <- c("") test.matrix<-test.matrix[,!(names(test.matrix) %in% drops)] test.matrix
2012 Mar 26
2
copy the columns based on the code
Hello, I have two different dataset, and wanted to join the two. For example I have a table of codes of cities, and other with with the codes of travels, [source for the destine]. what he wanted was to have a new data.frame with all the information city<-data.frame(city="Barcelona",cod=1) city<-rbind(city,data.frame(city="Madrid",cod=2))
2012 Mar 20
2
Unique in DataFrame
Hello, I have little doubt, and I do not think that the way I solve the problem is the best way to do it. The following is a small dataset x<-data.frame(city="Barcelona",sales=253639) x<-rbind(x,data.frame(city="Madrid",sales=223455)) x<-rbind(x,data.frame(city="Lisbon",sales=273633)) x<-rbind(x,data.frame(city="Madrid",sales=266535))
2012 Mar 08
8
Copy dataframe for another
I'm trying to copy the results of a dataframe to another within a cycle for but I am not able to implement the rbind, because give th d<-Null df<-NULL for(r in 2: nrow(x)) { val_user<-x.name[[r]] pos<-x.pos[[r]] -4 age <-x.age[[r]] d<-data.frame(val_user,pos,) print(d) } df<-rbind(df,d) } someone can help me solve this Thanks
2010 Jun 17
2
Help R
Hello, I'm new in using the R, but from what I read is an excellent tool. Would you like if I could help, I am trying create an array from reading a text file. The idea is to read the file, and transform the data in binary format, for example. The calves of this file format. A,B,C,D,G A,C,E,O F,G Put this away a b c d e f g o 1 1 1 1 1 0 0 1 0
2012 Mar 07
4
problem with data
Good Afternoon, ?? I have a small problem with the following code. # The x.sub$Time[[1]] 2006-10-31 19:03:01 EST # when put in variable star give-me star<-x.sub$Time[[1]] print(star) print(x.sub$Time[[1]]) [1] 1 36 32 -........ do not understand why -- View this message in context: http://r.789695.n4.nabble.com/problem-with-data-tp4453510p4453510.html Sent from the R help mailing
2002 Nov 22
2
TC HTB Traffic Shaping
Hi guys, I''m new to TC HTB traffic shaping.... I installed it at my first try on my Bearing Leaf Router/Firewall I use the tc -s class show dev eth? To see my output All looks dandy and nice, but it''s figures, of which at current momment looks like French to me, I would like to see exactly what these figures looks like in a GRAPH style... I know I can use MRTG, I do have
2005 Jun 22
3
block p2p: ARES
Hi.... I''m trying to setup a LAN router with P2P filter but the problem is that can''t "catch" Ares. There is a way to DROP "ares" p2p packets ? I''ve tried with last "ipp2p" snapshot without sucess... I''ve Kernel 2.4.28 iptables 1.3.0 Various Patches from patch-o-matic-ng-20040621 iproute2-ss020116 IMQ Patch Esfq Patch
2002 Mar 14
1
little dude about how classify traffic
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I am doing some experiments with HTB nad I have the next dude: I only make experiments with ssh traffic for the momment. If I want to classify that traffic do I need to do rules to the rest? I don''t know if you understand my idea. - -- +-------------------------------------------------------------------+ | Luis Miguel Cruz.
2012 Mar 13
2
Matrix Another table
I have next table source destine 3 3 7 7 6 6 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 3 3 4 4 3 I'm trying to create an array with the number of occurrences between the source and destination. id_ap<-levels(factor(df$v_source)) num_AP<-length(levels(factor(df$v_source))) mat<-matrix(data=NA,nrow=num_AP,ncol=num_AP, byrow=TRUE,dimnames=list(id_ap,id_ap)) 1 2 3 4 5 6 7
2011 Oct 24
2
Plot Legend
Good Afternoon, I am inexperienced in data visualization R. so I wonder if someone can help me. I am using the generic database mtcars. I would like to change the chart plot, instead of appearing the name of the medicine, I wanted a symbol in the chart drugX arise for example in a yellow circle, and so for the rest of the drugs. I am using the following code. dataset Age Sex BP
2012 Jun 14
2
plot cdf
Good Afternoon, I'm trying to create a cdf plot, with the following code. It works well, but I have little doubt, if you can help solve. When I create the plot, like the graph line would still not appear with point #cdf x<-table(Dataset$Apcode) View(s) hist(s) *plot(ecdf(x))* x<-1 37607 2 26625 3 5856 4 25992 5 30585 6 16064 7 9850 .. ... .. 186 52 -- View this message in
2001 Oct 23
0
changing samba share permissions using windows NT computers
Hi, I am kind of new to the samba set of programs and I have one small question. Is there a way to setup samba so that Windows NT/2000 machines can change the file or folder permissions on a samba share? I read in the documentation that this is possible, but trying the method described in the manual, I cannot even find a permissions tab when I right click,properties. I am running samba 2.0.7 at
2004 Feb 03
1
RE: limiting p2p
Interesante !! lo probaste con 2.4 ? o 2.6 ? -> -----Mensaje original----- -> De: Esteban Ribicic [mailto:esteban@dejawu.com.ar] -> Enviado el: Lunes, 02 de Febrero de 2004 08:11 p.m. -> Para: ''ThE PhP_KiD'' -> Asunto: RE: [LARTC] limiting p2p -> -> -> Probaste layering 7 matching? -> -> -> -----Mensaje original----- -> De:
2001 Oct 12
2
BoxOS
Dear WINE Users/Programmers/Developers, I am currently starting a new project called BoxOS. We are going to try port the WINE System to a FreeDOS Enviroment. Here is a more information on the project: The BoxOS Kernel is based upon FreeDOS Beta 7 ("SPEARS"). That version of FreeDOS includes the Kernel 2023b and sys updated to 2024h and the FreeCom 0.82 updated to 0.83beta28. We have
2016 Feb 09
4
Accessing to mail as another user
Hello, I'm looking for a way to access to a POP/IMAP account as another user different than me, but using my password. That is, I'm "someone at domain.com" and I want to access to "anotherone at domain.com" mailbox using the password of "someone at domain.com", not the "anotherone at domain.com" (something similar to master passwords, but