search for: datagridview_df

Displaying 1 result from an estimated 1 matches for "datagridview_df".

2011 Oct 23
1
R Data Frame to C# DataGridView - R.NET
...engine.EagerEvaluate("myDataFrame <- data.frame('Order' = c(1,2,3,4,5),'Name' = c('Bob', 'Ryan', 'Mel', 'Mark', 'Ali'))"); DataFrame dataset = engine.EagerEvaluate("myDataFrame").AsDataFrame(); dataGridView_DF.DataSource = dataset; }/ I've looked at this link: http://psychwire.wordpress.com/2011/06/25/importing-and-displaying-a-data-frame-with-c-and-r-net/ but I'd like to avoid loops and take a more direct route. I have a feeling I'm supposed to fill 'table' with the content...