-
Couldn't load subscription status.
- Fork 1.9k
Open
Labels
Microsoft.Data.AnalysisAll DataFrame related issues and PRsAll DataFrame related issues and PRsenhancementNew feature or requestNew feature or requestusabilitySmoothing user interaction or experienceSmoothing user interaction or experience
Milestone
Description
I have:
- IDataView trainingData
- IDataView testData
I want to combine trainingData and testData
IDataView combinedData = trainingData + testData;
Finally, I want to retrain the model with it.
Q1. Is there are way to combine multiple IDataViews without converting to DataFrame?
Q2. What is the syntax for combining IDataViews converted as DataFrame. I am trying to do something like this:
DataFrame dfTrain = trainingData.ToDataFrame(-1);
DataFrame df2 = testdata.ToDataFrame(-1);
df.Add(df2.Rows);
The sample in machinelearning-samples re-reads the data from a file source. However, it the data might not always be in a file, or the big may be very big
Metadata
Metadata
Assignees
Labels
Microsoft.Data.AnalysisAll DataFrame related issues and PRsAll DataFrame related issues and PRsenhancementNew feature or requestNew feature or requestusabilitySmoothing user interaction or experienceSmoothing user interaction or experience