search for: treetag

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

2008 Jun 06
1
editing a data.frame
dear R users, the data frame (read in from a csv) looks like this: TreeTag Census Stage DBH 1 CW-W740 2001 juvenile 5.8 2 CW-W739 2001 juvenile 4.3 3 CW-W738 2001 juvenile 4.7 4 CW-W737 2001 juvenile 5.4 5 CW-W736 2001 juvenile 7.4 6 CW-W735 2001 juvenile 5.4 ... 1501 1.00E-20 2001 adult 32.5...
2006 Apr 24
2
sortable table rows?
I''ve been trying to make some table rows sortable using Scriptaculous. I''ve used: Sortable.create("secondlist", {tag:''tr'', treeTag:''table''}); and Sortable.create("secondlist", {tag:''tr''}); Neither of which works. Is it even possible to do this? Thanks, Daniel
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.
2006 Feb 17
29
Sortable Tree Addition [PATCH]
Hello, here is the initial patch for support for sortable trees. Please as many people download this code and test with your lists and feel free to add more list tests. Files modified were dragdrop.js and prototype.js. Some new options have been added. ''treeTag'' specifies the tag used to contain children elements. ''tree'' must be set to true for this additional functionality to work. Greedy has been removed as it does not work with tree lists. There are severe performance problems with dragdrop which need to be addressed...
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...else Sortable._marker.setStyle({top: (offsets[1]+dropon.clientHeight) + 'px'}); - + Sortable._marker.show(); }, @@ -851,11 +852,11 @@ var Sortable = { children: [], position: parent.children.length, container: $(children[i]).down(options.treeTag) - } + }; /* Get the element containing the children and recurse over it */ if (child.container) - this._tree(child.container, options, child) + this._tree(child.container, options, child); parent.children.push (child); } @@ -880,7 +881,7 @@ var...
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply to this email, as some of the replaced lines are too long, so git won't let me send the email. However, there is nothing wrong with that patch, and it should be applied in the sequence listed below. Note also that I assume this will be tested on a clean f11 install, rather than an upgrade of an existing ovirt server