search for: right_siz

Displaying 3 results from an estimated 3 matches for "right_siz".

Did you mean: right_size
2007 Dec 28
4
static box sizing problems
...understandable to C++ programmers. This is in the constructor of my frame subclass: lr_sizer = BoxSizer.new( HORIZONTAL ) txt = StaticText.new (self, -1, "Text Left") lr_sizer.add(txt, 1, EXPAND | ALL, 4) static_box = StaticBox.new(self, -1, "Static Box") right_sizer = StaticBoxSizer.new( static_box, VERTICAL ) lr_sizer.add(right_sizer, 0, EXPAND | ALL, 4) set_sizer(lr_sizer) layout() This code runs and gives almost what I want. The text appears on the left and the static box on the right. However, the static box is a tiny sliver. What I want...
2004 Aug 12
4
truly object oriented programming in R
...double splitValue = points[middlePoint][split_dim]; middlePoint = sortedIndices[split_dim][numOfPoints/2-1]; double splitValue_small = points[middlePoint][split_dim]; int left_size = numOfPoints/2; int right_size = numOfPoints - left_size; double[][] leftPoints = new double[left_size][d]; double[][] rightPoints = new double[right_size][d]; int[][] leftSortedIndices = new int[d][left_size]; int[][] rightSortedIndices = new int[d][right_size]; int left_count...
2004 Aug 12
9
Giving a first good impression of R to Social Scientists
Dear all, in the coming Winter Semester, I will be a teaching assistant for a course in Survival Analysis. My job will be to do the lab sessions. The software used for these lab sessions will be R. Most of the students have a background in social sciences and the only stats package they used so far is most likely SPSS. So I assume they might be quite surprised the first time they see R