No description
- Julia 100%
| .github/workflows | ||
| docs | ||
| src | ||
| test | ||
| .gitignore | ||
| LICENSE | ||
| Project.toml | ||
| README.md | ||
| Documentation | Build Status |
|---|---|
STDFormat
STDFormat is a parser for the Standard Test Data Fromat STDF. It's desing goal is to be STDFv4 Specfication compleate and modular in a way that no recods and field can be added up easliy if needed.
Installation Guide
STDFormat is tested to be compatible with Julia version 1.10 and later. To get the JuliaGrid package installed, execute the following Julia command:
import Pkg
Pkg.add("STDFormat")
using STDFormat
using DataFrames
# Convert an STDF file to DataFrames
die_df, test_df = stdf_to_dataframe("path/to/file.stdf")
# View the die-level information
first(die_df, 5)
# View the test results
first(test_df, 5)
# Join the DataFrames for analysis
joined_df = inner_join(die_df, test_df, on=:part_id)