Displaying 20 results from an estimated 98 matches for "spliting".
Did you mean:
splitting
2006 Apr 12
2
Bug#362026: RM: xen -- obsolete, new splited xen packages upcoming
Package: ftp.debian.org
Severity: normal
Hello,
Please consider removing xen.
New xen-3.0 splited packages are upcoming, making this one obsolete.
Cheers,
--
Julien Danjou
// <julien@danjou.info> http://julien.danjou.info
// 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD
// The more we fly, the more we climb, the more we know that heaven is a lie.
-------------- next part
2010 Dec 31
3
[LLVMdev] CodeExtractor.cpp potential bug?
There might be a misuse of DominatorTree::splitBasicBlock in
CodeExtractor.cpp, line 145.
Header is splited into two (OldPred->NewBB).
Line 145 updates the dominator tree by calling DT->splitBasicBlock(NewBB).
I think it should be DT->splitBasicBlock(OldPred).
When I tried to extract a code region whose header has 2 successors, my pass
crashed.
It was because header (or OldPred) is the
2005 Oct 20
5
spliting an integer
Hi there,
From the vector X of integers,
X = c(11999, 122000, 81997)
I would like to make these two vectors:
Z= c(1999, 2000, 1997)
Y =c(1 , 12 , 8)
That is, each entry of vector Z receives the four last digits of each entry of X, and Y receives "the rest".
Any suggestions?
Thanks in advance,
Dimitri
[[alternative HTML version deleted]]
2010 Nov 01
1
spliting first 10 words in a string
Hi all,
I have a columnn with text that has quite a few words in it. I would like to split these words in separate columns, but just first ten words in the string. Is that possible in R?
Thank you, m
[[alternative HTML version deleted]]
2006 Jul 28
1
spliting
Dear mailing list,
I have a big data frame and each element in the matrix has two alphabets. I
want to split those alphabets into two so each element will have one
alphabet and the number of my columns will be doubled . So can some one help
with the code?
Example of what I want is to split them.
Input (three column)
GG AG AG
CC CC CC
CC CC CC
AG
2008 Jul 17
2
spliting a string
Hi
String<-"130.5"
Df<-Strsplit(".",":",String)
Then Df get
"" "" "" ""
But I want Df should contains
Df
"130"
"5"
If any body knows how to do it.tel me
Thanks
K.Ravichandra
[[alternative HTML version deleted]]
2002 Dec 26
1
Dovecot splited fetch problem
Hello,
When I was trying out the IMAP server (using Mozilla as client), I have
no success of receving mail with attachments. Looking it down further
I've found that Mozilla fetches the message in 10k blocks, and the
server seems missed a couple of bytes at where the split occurs...
Mozilla start the fetch by saying:
* 413 FETCH (UID 827 RFC822.SIZE 106371 BODY[]<0> {10240}
-- snip
2006 Apr 17
1
strsplit does not return correct value when spliting "" (PR#8777)
Full_Name: Charles Dupont
Version: 2.2.0
OS: linux
Submission from: (NULL) (160.129.129.136)
when
strsplit("", " ")
returns character(0)
where as
strsplit("a", " ")
returns "a".
these return values are not constiant with each other.
Charles Dupont
2006 Apr 17
0
(PR#8777) strsplit does [not] return correct value when spliting ""
Prof Brian Ripley wrote:
> On Mon, 17 Apr 2006, Charles Dupont wrote:
[...]
> > The man page states in the value section that strsplit returns:
> > A list of length 'length(x)' the 'i'-th element of which contains
> > the vector of splits of 'x[i]'.
> >
> > It mentions no change in behavior if the value of x[i] = "".
>
2007 Nov 28
1
how to find and use specific column after spliting dataframe
Dear all:
I am a new R-user and I have 2 questions
about it.
1) I need to find specific sub-dataframe,
and then use specific column to calculate.
For example, after splitting dataframe, I find specific the
sub-dataframe, such as ?A.split [1]?.
But, I don?t know how to find ?time? and ?concentration? columns of ?A.split
[1]?.
2) The equation used to sub-dataframe is
2006 Sep 20
3
Spliting a huge vector
Dear R users,
I have a huge vector that I would like to split into
unequal slices. However, the only way I can do this is
to create another huge vector to define the groups
that are used to split the original vector, e.g.
# my vector is this
a.vector <- seq(2, by=5, length=100)
# indices where I would like to slice my vector
cut.values <- c(30, 50, 100, 109, 300, 601, 803)
# so I have to
2009 Dec 17
2
Problem with spliting a dataframe values
Hi all,
Hi this is kiran
I am facing a problem to split a dataframe
that is..
i have a string like: "a,b,c|1,2,3|4,5,6|7,8,8"
first I have to split with respect to "|"
I did it with command
unlist(strsplit("a,b,c|1,2,3|4,5,6|7,8,8", "\\,"))
after getting that set i made it as a dataframe and it comes like
a,b,c
1,2,3
4,5,6
7,8,8
now i have to
2007 Dec 13
6
spliting strings ...
Hi everyone,
I have a vector of strings, each string made up by different number of words. I want to get a new vector which has only the first word of each string in the first vector. I came up with this:
str <- c('aaa bbb', 'cc', 'd eee aa', 'mmm o n')
str1 <- rep(1, length(str))
for (i in 1:length(str)) {
str1[i] <- strsplit(str, "
2010 Mar 30
2
Need help to split a given matrix is a "sequential" way
...dat1[,2])[2]),]
> dat13 <- dat1[which(dat1[,2] == unique(dat1[,2])[3]),]; dat11; dat12;
> dat13
[1] 200 100 80
[,1] [,2] [,3]
[1,] 200 150 180
[2,] 200 150 100
[,1] [,2] [,3]
[1,] 200 50 140
[2,] 200 50 180
similarly for dat2..............
This kind of sequential spliting would continue for
(no_of_cols_of_ogirinal_matrix -1) times. It would be greate if again I can
put all those matrices within a "list" object for further calculations.
Therefore you see if the original matrix is of small_size then that can be
handled manually. However for a moderately lar...
2011 Jan 03
0
[LLVMdev] CodeExtractor.cpp potential bug?
On Dec 31, 2010, at 11:20 AM, Vu Le wrote:
> There might be a misuse of DominatorTree::splitBasicBlock in CodeExtractor.cpp, line 145.
> Header is splited into two (OldPred->NewBB).
>
> Line 145 updates the dominator tree by calling DT->splitBasicBlock(NewBB).
> I think it should be DT->splitBasicBlock(OldPred).
>
> When I tried to extract a code region whose
2009 Sep 25
7
Spliting columns, strings or reg exp returning substrings
Currently as the first column in a data frame I have string values in the format xx_yy - I want to create a new column with just the substring xx (for each row in turn). Three possible ways to do this might be (1) split the string by '_' using strsplit and paste the first of the resulting variables into a new column, but I have been unable to do this for each row of my data frame in turn
2010 Jan 20
1
Plugin
Hello Everyone...
Some time ago, i send some questions about plugins and concat 2 file
handles.
So, there is another questions about this.
Timo Sirainen send to me this modification, in
src/lib-storage/index/maildir/maildir-mail.c
struct istream *full_input[3];
full_input[0] = i_stream_create_fd(fd, 0, TRUE);
full_input[1] = i_stream_create_fd(fd1, 0, TRUE);
full_input[2] = NULL;
input =
2012 Aug 27
3
String Handling() for Split a word by a letter
...y 12345. Means that , i
need the all letter as a word which is before of first " _ " - symbol of
"a". i tried to do with unpaste, it says function not found. After that i
tried with "strsplit() ". it ran, but again i need to write another method
to get again after spliting.
Any other good method is there for this requirement ?
- Thanks
Antony.
--
View this message in context: http://r.789695.n4.nabble.com/String-Handling-for-Split-a-word-by-a-letter-tp4641397.html
Sent from the R help mailing list archive at Nabble.com.
2007 Oct 11
4
Spliting Folders for Efficiency
Dear Timo,
Would there be any sense in giving Dovecot the option to split folders
into multiple subfolders when they reached a specified size (probably
message count) limit?
Dovecot would monitor folders and when they reached, say, 10,000
messages, silently split the folder on the filesystem to ensure that
access remains fast.
I know that Dovecot scales very well but this would give
2001 Oct 11
2
Can we encrypt copied files on target machine?
...as separated files to B, along with info on how to rebuild the
file from the *decrypted* parts (remember, B doesn't know how to decrypt). The
problem then would be to keep at A a record of the parts sent do B, in order to
decide how to split the file the next time A wants to send it to B (the
spliting is not trivial, since the parts must be equal to those already at B if
possible).
So eventually I finish using the rsync algorythm, not to do the final copy of
files from A to B, but to do the splitting of the raw file at A into parts. I
just need to build an auxiliary file with info on how to jo...