Import/Export
Maple provides a flexible import and export of from a wide variety of data file formats, including those specific to Excel. Once your data is in Maple, you have full access to all of Maple’s data analysis, computation, and visualizations tools to help you understand your data and transform it into whatever other forms you need.
- Import and export Excel .xls and .xlsx files, as well as .csv,. tsv, and other data file formats
- Import data into a data frame or a matrix
- Easily treat the first row in your data file as data or as column headings
- Specify the Excel sheet and range of cells to import or export, when needed
- Customize how Maple deals with empty cells on import
Example
Import data from an Excel spreadsheet into a dataframe:
dataframe := Import(“C:/Project/ExperimentalData.xls”);
Maple can display summary statistics on the data from Excel:
Statistics:-DataSummary(dataframe, summarize = embed):

Maple has numerous routines for statistics and data analysis. For example, you can scale the data:
ScaledData := Statistics:-Scale(dataframe):
Statistics:-BoxPlot(Scale(dataframe[.., 2 ..]), title = “Scaled Data”);

You can export the transformed data back to an Excel file:
Export(“NewData.xlsx”, ScaledData);