We are in a class on introductory econometrics and need to export data from Gretl so that Stata users can import it.
Seems that there is a tool to make it (Stat/Transfer), but it's not free.
Has anyone a tested method to do this?
Use gretl.export(vars) to export to a csv file in gretl's temp directory, which can be read into Stata with import delimited.
gretl.export(vars)
import delimited
Gretl will happily write is Stata format. You can either use the graphical user interface for this (File>Export) or the store command, as in
store
store mydata.dta
Copyright © 2021 Jogjafile Inc.
Use
gretl.export(vars)
to export to a csv file in gretl's temp directory, which can be read into Stata withimport delimited
.