Greetings, I just started using JMP and I am rusty in doing data analysis. Looking through the JMP help hasn't helped me figure out how to generate the analysis that interests me and my colleagues.
I was provided with two sets of data, each in a csv file. Both sets of data are from a survey that was given to attendees of a course before the course began, then again after it ended to self-assess the attendees' proficiency on the main concepts covered in the course before it started, then after it ended. The pre-survey and post-survey contain the same survey items, all on a 5-point Likert scale.
What I want to do is compare the responses between the pre and post surveys for each item in the pre and post surveys to see how each item changed, with the expectation being that the post-survey should show some improvements in the courses' main content areas. The idea is to see if people think their knowledge of the course helped improve their knowledge after taking the course. Does this make sense?
Note that I am using JMP 14 on a Mac.
Any tips on how to do this? I did get far enough in JMP to analyse the two indivual sets of data separately. Now I need to analyse them together for comparison purposes.
@uday_guntupalli has provided instructions on how to use JSL to get your data together, however, it appears that you are probably running interactively, so I will pretty much repeat what Uday specified, but in interactive terms
1. Open the first data table
File==>Open
2. Open the second data table
File==>Open
3. Append the tables together
Tables==>Concatenate
As for the analysis, I assume you should use the Categorical Platform, so:
4. Open the Categorical Platform
Analyze==>Consumer Research==>Categorical
Documentation on the Categorical Platform is available at:
Help==>Books==>Consumer Research
@shorwitz :
My recommendation is you upload samples of your data - you can mask them in case you are concerned about sharing the data .
Just reading through your question - doesnt really help a reader understand what is the help you seek .
If I were in your shoes , I would have done the following :
dt1 = Open( FilePath1 ) ; // Open File1 . Can be done by going to File > Open as well dt2 = Open(FilePath2) ; // Open File1 . Can be done by going to File > Open as well
Now - since you have both the .csv files open in JMP , if both the .csv files have the exact same type of data ( same columns) - then you can concatenate them together .
dt3 = dt1 << Concatenate(dt2);
At this juncture - you have 3 data sets as you wanted and you can do what you chose . If you need specific tasks done - please explain in detail so people can try and guide you .
Uday
@uday_guntupalli has provided instructions on how to use JSL to get your data together, however, it appears that you are probably running interactively, so I will pretty much repeat what Uday specified, but in interactive terms
1. Open the first data table
File==>Open
2. Open the second data table
File==>Open
3. Append the tables together
Tables==>Concatenate
As for the analysis, I assume you should use the Categorical Platform, so:
4. Open the Categorical Platform
Analyze==>Consumer Research==>Categorical
Documentation on the Categorical Platform is available at:
Help==>Books==>Consumer Research
The Analyze==>Consumer Research==>Categorical solution is exactly what I was looking for! Thanks so much!
@shorwitz :
I dont see the sample files - but the answer to your quesion would be the following :
dt1<< Concatenate(dt2,
Create source column
)// Create Source Column - will provide a new column that helps you identify which table the data came from .
You can acheive the same interactively by going to Tables ==> Concatenate .
Example below.
Uday
@shorwitz :
Here is an example to do something similar. Alternatively ,
Tables ==> Summary
Data Table( "Air Traffic" ) << Summary( Group( :Airline ), N( :Airport ), Freq( "None" ), Weight( "None" ) )
Uday
I suggest that you select Help > Books > Basic Analysis and then focus on the chapter about Tabulate. Next (cuz we know where you will go next), select Help > Books > Essential Graphing and then focus on the chapters about Graph Builder. This material is well written and loaded with examples and step-by-step instructions. You can also visit the JMP Web site (hosting this discussion) and start with Learn JMP in the main menu bar. Lots of tutorials.
You might also want to look at the Categorical platform (Analyze > Consumer Research) for additional tools and reports.