Interface SAS
public interface SAS
Reads SAS7BDAT datasets. SAS7BDAT is currently the main format
used for storing SAS datasets across all platforms.
Leveraging the lightweight Java library Parso (https//github.com/epam/parso), no proprietary SAS software is required.
-
Method Summary
-
Method Details
-
read
Reads a SAS7BDAT file.- Parameters:
path
- the input file path.- Returns:
- the data frame.
- Throws:
IOException
- when fails to write the file.
-
read
Reads a SAS7BDAT file.- Parameters:
path
- the input file path.- Returns:
- the data frame.
- Throws:
IOException
- when fails to write the file.URISyntaxException
- when the file path syntax is wrong.
-
read
Reads a limited number of records from a SAS7BDAT file.- Parameters:
input
- a SAS7BDAT file input stream.limit
- the number of records to read.- Returns:
- the data frame.
- Throws:
IOException
- when fails to write the file.
-