S.A.S. (Statistical Analysis Software) and E-prime Data
semeon.risom at gmail.com
semeon.risom at gmail.com
Fri Apr 11 16:05:47 UTC 2014
I provided a few options. First you'll have to merge your edat files using
e-merge. At that point you can export the new edat file to an Excel format
(CSV). You can either the CSV file on SAS, or save the CSV as a Excel file
(xls, xlsx) and open the workbook directly using SAS. Personally I
recommend the later to avoid most formatting issues. I provided some
examples below. Also SAS provides some help with this. Searching for 'Proc
Import' on Google should be a good place to start.
Good luck!
- SMR
Import of CSV -
proc import datafile = 'C:\Users\Owner\Desktop\Experiment.CSV'
out = Permanent.Dataset
dbms=csv
replace;
getnames=
run;
Direct option -
libname WrkBk EXCEL 'C:\Users\Owner\Desktop\Experiment.xlsx' MIXED=YES;
data Permanent.New_Dataset;
set WrkBk.'Experiment$'n;
run;
On Sunday, 6 April 2014 13:39:58 UTC-5, gibs... at gmail.com wrote:
>
> Hello Everyone,
>
> I'm using the SAS (Statistical Analysis Software), 9.4 version for
> windows. I need to know what's the better way to export data from e-data
> files to this software. Specially, if it is possible to export in a native
> format of SAS files, for example: sas7bdat; xpt; xlsx or xml.
>
> I'm using the E-prime version 2.0 on windows XP, working with a dot probe
> task.
>
>
> Thanks for your attention,
>
>
> Gibson Weydmann
>
> Psychology Student on UNISINOS
> Member in the Laboratory of Experimental Psychology, Neuroscience and
> Behavior (LPNeC) on UFRGS-Brazil
>
--
You received this message because you are subscribed to the Google Groups "E-Prime" group.
To unsubscribe from this group and stop receiving emails from it, send an email to e-prime+unsubscribe at googlegroups.com.
To post to this group, send email to e-prime at googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/e-prime/14abbfe8-0770-4c49-a876-3e91fc168234%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listserv.linguistlist.org/pipermail/eprime/attachments/20140411/5adddd73/attachment.htm>
More information about the Eprime
mailing list