Displaying 1 result from an estimated 1 matches for "markernod".
Did you mean:
  markernode
  
2012 Feb 10
3
Creating XML document extremely slow
.../Points>
     <Channel>All</Channel>
    </Marker>
    ...
   </Markers>
  </MarkerSet>
There are about 500 very similar marker tags.  Here's the part of the
code that is particularly slow (x is a character, y is an integer,
both have a length of about 500):
  markernode <- xmlNode('Markers')
  for(i in 1:length(t)){
    markernode <- addChildren(markernode, xmlNode('Marker',
             xmlNode('Type', 'Stimulus'), xmlNode('Description', x[i]),
             xmlNode('Position', y[i]), xmlNode('Points',...