Does any one know how to graph data in Andriod Studio or export the data to a te
ID: 640374 • Letter: D
Question
Does any one know how to graph data in Andriod Studio or export the data to a text File? The data is saved in a CSV File. I want to Graph/Export the original data and the new data after a Transform it.
The Below Code is taking the above X,Y,Z data and multiplying every thing by 2. So I want to know if andriod studio (Java Code) has an option to Graph or export the modified data to a text File.
public class MultiplyByTwo implements MetamorphicTransform {
public List transform(List inputData)
{
for(int i=0; i float[] array = inputData.get(i);
for(int j =0;j array[j] = array[j] *2;
}
inputData.set(i, array);
}
return inputData;
}
}
Explanation / Answer
It is important that this does not generate a Excel file, but another format. You could use this to move data from one database to another (must be MS SQL in both cases).
Examples: Create a format file:
Bcp [TABLE_TO_EXPORT] format "[EXPORT_FILE]" -n -f "[ FORMAT_FILE]" -S [SERVER] -E -T -a 65535
Export all Data from a table:
bcp [TABLE_TO_EXPORT] out "[EXPORT_FILE]" -f "[FORMAT_FILE]" -S [SERVER] -E -T -a 65535
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.