Back to all Blog Posts

In Good Shape – How to Successfully Prepare Your Data in R, Stata, and SPSS

  • Coding
  • R
  • Statistics & Methods
01. November 2017
·

Jessica Gerhard
Team AI Academy

In the "In Good Shape" series, various methods for optimally preparing data for analysis will be demonstrated over the coming weeks. Implementation will be shown separately in R, Stata, and SPSS, highlighting the advantages and disadvantages of each software.

Data Import and Export

No matter how good your methodological skills are, if your data aren't in the desired format, even the simplest statistical procedure can't be applied. Even worse, using incorrectly formatted data might lead you to apply the wrong statistical test entirely. For example, this can become problematic when differentiating between paired and independent samples, as shown in the post about the t-test. Such errors can drastically alter results and interpretations—sometimes without the analyst even noticing.

This entry first addresses methods for importing data into statistical software and exporting them again (after processing). While not considered a core part of data preparation, this step forms the initial and final phases surrounding data preparation. Future entries will discuss topics such as data types, data restructuring, data merging, and handling strings and date formats.

Dataset

The dataset used for demonstrating data preparation should naturally fit the "In Good Shape" theme. Therefore, we've tracked our candy consumption over two weeks. To avoid embarrassing anyone, we've used fictional names - specifically, those of our favorite statisticians. The first few rows of the dataset "Sweets," sorted by day, are shown below.

Abbildung der Daten

The structure and variable types will be discussed in later posts. First, let's explore how to access these imported data.

Data Import

Before beginning any data preparation, the dataset must first be imported into the appropriate software. Regardless of the software used, the data format must be considered. There are countless formats and import methods, but in practice, the most common challenge is importing data from XLS(X), CSV, or the native format of the chosen software. The process for importing these three formats into R, Stata, and SPSS is presented below. For consistency, we assume that the file—regardless of format—is named "sweets".

After each import, it is crucial to verify that the data were imported correctly. The number of variables and cases should match the original dataset. Therefore, for each software, the data view after importing will also be shown.

R

The simplest method for importing data in R is using an RData file. Typically, no additional arguments need to be specified beyond the file name and path.

Importing a CSV file is easiest with the read.csv2() function, which is a specialized version of read.table(). It's important to check the delimiter and decimal separator, which can be adjusted using the sep and dec arguments if necessary. Additionally, the argument header should be set to TRUE if the first row contains variable names.

For importing an Excel file (XLSX format), the read.xlsx2() function can be used. Here, the sheet name and an optional specific range must be specified.

The functions mentioned above are just one of many possible ways to import each file type into R.

# Import RData-File 
load(file = "dateipfad/sweets.RData")   
# Import csv-File 
read.csv2(file = "dateipfad/sweets.csv") 
#Import xlsx-File, sofern Daten im 1. Tabellenblatt 
library(xlsx) 
read.xlsx2(file = "dateipfad/sweets.xlsx“, sheetIndex = 1)

Abbildung der Daten in R

The above figure shows the imported data. The number of variables and cases (not visible here) matches the original dataset. However, whether the variables have the correct data type for analysis will be addressed later.

Stata

In Stata, only one dataset can be open at a time. If new data need to be loaded, the current dataset must be closed first. When importing data into Stata, it is important to note that an error message will be displayed if a dataset is already open and another one is being loaded. If you are sure that you no longer need the current dataset, you can use the clear option.

The data format in Stata is called "dta" and can be loaded using the use command. Only the file path needs to be specified.

Other data types can be imported using import. With import delimited, CSV (and TXT) files can be loaded. The delimiter can be adjusted if needed using the delimiters option.

Importing an Excel file is done using import excel, where the sheet name can be specified with sheet and the cell range with cellrange. Variable names in the first row must also be defined using firstrow.

* Import dta-File 
use "dateipfad/sweets.dta”, clear  
* Import csv-File 
import delimited "dateipfad/sweets.csv”, firstrow clear  
* Import xlsx-File, sofern Daten in 1. Tabellenblatt 
import excel "dateipfad/sweets.xlsx", sheet("Tabelle1") firstrow clear

Abbildung der Daten in Stata

In Stata, the data type can be roughly identified based on the color-coded display of variables. Red text indicates strings, black text represents all types of numeric values, and blue text is used for factors. While data types will be discussed later, it is important during import to ensure that (decimal) numbers are recognized correctly. In this specific case, the variable "obst" should be displayed in black rather than red to ensure it is interpreted as numeric.

SPSS

In this blog series, SPSS will be explained using syntax rather than dialog boxes. The native SPSS data format is called "sav". As with the previous programs, importing this format requires only specifying the file path.

The syntax for importing a CSV file is slightly more complex, especially when dealing with a large number of variables in the dataset. In this case, the delimiter must be explicitly specified. If only a single file needs to be imported, it is recommended to generate the syntax using the dialog boxes.

Similarly, the command for importing XLSX files is significantly longer compared to the other statistical software. Therefore, using dialog boxes can also simplify the import process in SPSS.

* Import sav-File. 
GET 
  FILE='dateipfad/sweets.sav'. 
* Import csv-File. 
GET DATA  
  /TYPE=TXT 
  /FILE'dateipfad/sweets.csv’ 
  /ENCODING='Locale' 
  /DELCASE=LINE 
  /DELIMITERS="," 
  /ARRANGEMENT=DELIMITED 
  /FIRSTCASE=2 
  /IMPORTCASE=ALL 
  /VARIABLES= 
  Tag 
  Mitarbeiter 
  Obst 
  Gummibärchen 
  Snickers 
  PickUp 
CACHE. 

EXECUTE. 

* Import xlsx-File (unter der Annahme, dass die Daten im Blatt „Tabelle 1“ liegen. 
GET DATA /TYPE=XLSX 
  /FILE='dateipfad/sweets.xlsx' 
  /SHEET=name 'Tabelle1' 
  /CELLRANGE=full 
  /READNAMES=on 
  /ASSUMEDSTRWIDTH=32767. 
EXECUTE.

Abbildung der Daten in SPSS

The resulting data corresponds (in appearance) to the original data. It can be seen that SPSS automatically converts the decimal separator if the basic settings are available.

Overview

Format R Stata SPSS
Own format load use get file
CSV read.csv(2) import delimited get data /type =txt
XLSX read.xlsx(2) import excel get data /type =xlsx

Datenexport

After data preparation, the dataset must be exported to the desired format to avoid repeating the data preparation process each time. To ensure clear distinction, it is recommended to rename the dataset after processing. Here, the name "sweets_final" will be used.

R

Objects in R can be saved using the save() function. This requires specifying both the object to be saved and the file path.

To save the data as a CSV file, use write.csv2(), which complements the read.csv2() function. Alternatively, write.table() can also be used.

For Excel export, the complementary write.xlsx2() function is available. Specific results or plots can also be exported individually to Excel using workbook functions.

Additionally, the functions write.foreign() and write.dta() allow exporting data to formats used by other statistical software.

Note: When using the last-mentioned functions, row numbering is automatically stored as the first variable (without a name). To prevent this, set the argument row.names to FALSE.

Stata

Exporting data to the "dta" format in Stata is done using the save command, where only the file path needs to be specified. To export data in other formats, the export command is used. Similar to the import process, export delimited and export excel are used for CSV and XLSX formats, respectively.

Similar to workbook functions in R, Stata allows exporting specific results with formatting to an Excel workbook using the putexcel command. An introduction to this command can be found here.

SPSS

Data can be saved in the SAV format using the save outfile command. This also allows specifying which variables should be kept or removed.

To export data in CSV or XLSX format, use the save translate outfile command, specifying the file type as an argument.

Overview

Format R Stata SPSS
Eigenes Format save save save
CSV write.csv(2) export delimited save translate /type =txt
XLSX write.xlsx(2) export excel save translate /type =xls

Summary

The correct data structure is essential for the proper application of statistical methods. Before the data structure can be adjusted to meet methodological requirements, the data must first be imported correctly. Similarly, exporting data into various formats is crucial to facilitate further analysis. The approach differs between statistical software such as R, Stata, and SPSS. The easiest way to import data is by using the software's native format (RData, dta, or sav). For any questions regarding data preparation, our experts are happy to assist at info@statworx.com.

Linkedin Logo
Marcel Plaschke
Head of Strategy, Sales & Marketing
schedule a consultation
Zugehörige Leistungen
No items found.

More Blog Posts

  • Artificial Intelligence
AI Trends Report 2025: All 16 Trends at a Glance
Tarik Ashry
05. February 2025
Read more
  • Artificial Intelligence
  • Data Science
  • Human-centered AI
Explainable AI in practice: Finding the right method to open the Black Box
Jonas Wacker
15. November 2024
Read more
  • Artificial Intelligence
  • Data Science
  • GenAI
How a CustomGPT Enhances Efficiency and Creativity at hagebau
Tarik Ashry
06. November 2024
Read more
  • Artificial Intelligence
  • Data Culture
  • Data Science
  • Deep Learning
  • GenAI
  • Machine Learning
AI Trends Report 2024: statworx COO Fabian Müller Takes Stock
Tarik Ashry
05. September 2024
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Strategy
The AI Act is here – These are the risk classes you should know
Fabian Müller
05. August 2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Back to the Future: The Story of Generative AI (Episode 4)
Tarik Ashry
31. July 2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Back to the Future: The Story of Generative AI (Episode 3)
Tarik Ashry
24. July 2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Back to the Future: The Story of Generative AI (Episode 2)
Tarik Ashry
04. July 2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Back to the Future: The Story of Generative AI (Episode 1)
Tarik Ashry
10. July 2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Generative AI as a Thinking Machine? A Media Theory Perspective
Tarik Ashry
13. June 2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Custom AI Chatbots: Combining Strong Performance and Rapid Integration
Tarik Ashry
10. April 2024
Read more
  • Artificial Intelligence
  • Data Culture
  • Human-centered AI
How managers can strengthen the data culture in the company
Tarik Ashry
21. February 2024
Read more
  • Artificial Intelligence
  • Data Culture
  • Human-centered AI
AI in the Workplace: How We Turn Skepticism into Confidence
Tarik Ashry
08. February 2024
Read more
  • Artificial Intelligence
  • Data Science
  • GenAI
The Future of Customer Service: Generative AI as a Success Factor
Tarik Ashry
25. October 2023
Read more
  • Artificial Intelligence
  • Data Science
How we developed a chatbot with real knowledge for Microsoft
Isabel Hermes
27. September 2023
Read more
  • Data Science
  • Data Visualization
  • Frontend Solution
Why Frontend Development is Useful in Data Science Applications
Jakob Gepp
30. August 2023
Read more
  • Artificial Intelligence
  • Human-centered AI
  • statworx
the byte - How We Built an AI-Powered Pop-Up Restaurant
Sebastian Heinz
14. June 2023
Read more
  • Artificial Intelligence
  • Recap
  • statworx
Big Data & AI World 2023 Recap
Team statworx
24. May 2023
Read more
  • Data Science
  • Human-centered AI
  • Statistics & Methods
Unlocking the Black Box – 3 Explainable AI Methods to Prepare for the AI Act
Team statworx
17. May 2023
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Strategy
How the AI Act will change the AI industry: Everything you need to know about it now
Team statworx
11. May 2023
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Machine Learning
Gender Representation in AI – Part 2: Automating the Generation of Gender-Neutral Versions of Face Images
Team statworx
03. May 2023
Read more
  • Artificial Intelligence
  • Data Science
  • Statistics & Methods
A first look into our Forecasting Recommender Tool
Team statworx
26. April 2023
Read more
  • Artificial Intelligence
  • Data Science
On Can, Do, and Want – Why Data Culture and Death Metal have a lot in common
David Schlepps
19. April 2023
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Machine Learning
GPT-4 - A categorisation of the most important innovations
Mareike Flögel
17. March 2023
Read more
  • Artificial Intelligence
  • Data Science
  • Strategy
Decoding the secret of Data Culture: These factors truly influence the culture and success of businesses
Team statworx
16. March 2023
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
How to create AI-generated avatars using Stable Diffusion and Textual Inversion
Team statworx
08. March 2023
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Strategy
Knowledge Management with NLP: How to easily process emails with AI
Team statworx
02. March 2023
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
3 specific use cases of how ChatGPT will revolutionize communication in companies
Ingo Marquart
16. February 2023
Read more
  • Recap
  • statworx
Ho ho ho – Christmas Kitchen Party
Julius Heinz
22. December 2022
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
Real-Time Computer Vision: Face Recognition with a Robot
Sarah Sester
30. November 2022
Read more
  • Data Engineering
  • Tutorial
Data Engineering – From Zero to Hero
Thomas Alcock
23. November 2022
Read more
  • Recap
  • statworx
statworx @ UXDX Conf 2022
Markus Berroth
18. November 2022
Read more
  • Artificial Intelligence
  • Machine Learning
  • Tutorial
Paradigm Shift in NLP: 5 Approaches to Write Better Prompts
Team statworx
26. October 2022
Read more
  • Recap
  • statworx
statworx @ vuejs.de Conf 2022
Jakob Gepp
14. October 2022
Read more
  • Data Engineering
  • Data Science
Application and Infrastructure Monitoring and Logging: metrics and (event) logs
Team statworx
29. September 2022
Read more
  • Coding
  • Data Science
  • Machine Learning
Zero-Shot Text Classification
Fabian Müller
29. September 2022
Read more
  • Cloud Technology
  • Data Engineering
  • Data Science
How to Get Your Data Science Project Ready for the Cloud
Alexander Broska
14. September 2022
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Machine Learning
Gender Repre­sentation in AI – Part 1: Utilizing StyleGAN to Explore Gender Directions in Face Image Editing
Isabel Hermes
18. August 2022
Read more
  • Artificial Intelligence
  • Human-centered AI
statworx AI Principles: Why We Started Developing Our Own AI Guidelines
Team statworx
04. August 2022
Read more
  • Data Engineering
  • Data Science
  • Python
How to Scan Your Code and Dependencies in Python
Thomas Alcock
21. July 2022
Read more
  • Data Engineering
  • Data Science
  • Machine Learning
Data-Centric AI: From Model-First to Data-First AI Processes
Team statworx
13. July 2022
Read more
  • Artificial Intelligence
  • Deep Learning
  • Human-centered AI
  • Machine Learning
DALL-E 2: Why Discrimination in AI Development Cannot Be Ignored
Team statworx
28. June 2022
Read more
  • R
The helfRlein package – A collection of useful functions
Jakob Gepp
23. June 2022
Read more
  • Recap
  • statworx
Unfold 2022 in Bern – by Cleverclip
Team statworx
11. May 2022
Read more
  • Artificial Intelligence
  • Data Science
  • Human-centered AI
  • Machine Learning
Break the Bias in AI
Team statworx
08. March 2022
Read more
  • Artificial Intelligence
  • Cloud Technology
  • Data Science
  • Sustainable AI
How to Reduce the AI Carbon Footprint as a Data Scientist
Team statworx
02. February 2022
Read more
  • Recap
  • statworx
2022 and the rise of statworx next
Sebastian Heinz
06. January 2022
Read more
  • Recap
  • statworx
5 highlights from the Zurich Digital Festival 2021
Team statworx
25. November 2021
Read more
  • Data Science
  • Human-centered AI
  • Machine Learning
  • Strategy
Why Data Science and AI Initiatives Fail – A Reflection on Non-Technical Factors
Team statworx
22. September 2021
Read more
  • Artificial Intelligence
  • Data Science
  • Human-centered AI
  • Machine Learning
  • statworx
Column: Human and machine side by side
Sebastian Heinz
03. September 2021
Read more
  • Coding
  • Data Science
  • Python
How to Automatically Create Project Graphs With Call Graph
Team statworx
25. August 2021
Read more
  • Coding
  • Python
  • Tutorial
statworx Cheatsheets – Python Basics Cheatsheet for Data Science
Team statworx
13. August 2021
Read more
  • Data Science
  • statworx
  • Strategy
STATWORX meets DHBW – Data Science Real-World Use Cases
Team statworx
04. August 2021
Read more
  • Data Engineering
  • Data Science
  • Machine Learning
Deploy and Scale Machine Learning Models with Kubernetes
Team statworx
29. July 2021
Read more
  • Cloud Technology
  • Data Engineering
  • Machine Learning
3 Scenarios for Deploying Machine Learning Workflows Using MLflow
Team statworx
30. June 2021
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
Car Model Classification III: Explainability of Deep Learning Models With Grad-CAM
Team statworx
19. May 2021
Read more
  • Artificial Intelligence
  • Coding
  • Deep Learning
Car Model Classification II: Deploying TensorFlow Models in Docker Using TensorFlow Serving
No items found.
12. May 2021
Read more
  • Coding
  • Deep Learning
Car Model Classification I: Transfer Learning with ResNet
Team statworx
05. May 2021
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
Car Model Classification IV: Integrating Deep Learning Models With Dash
Dominique Lade
05. May 2021
Read more
  • AI Act
Potential Not Yet Fully Tapped – A Commentary on the EU’s Proposed AI Regulation
Team statworx
28. April 2021
Read more
  • Artificial Intelligence
  • Deep Learning
  • statworx
Creaition – revolutionizing the design process with machine learning
Team statworx
31. March 2021
Read more
  • Artificial Intelligence
  • Data Science
  • Machine Learning
5 Types of Machine Learning Algorithms With Use Cases
Team statworx
24. March 2021
Read more
  • Recaps
  • statworx
2020 – A Year in Review for Me and GPT-3
Sebastian Heinz
23. Dezember 2020
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
5 Practical Examples of NLP Use Cases
Team statworx
12. November 2020
Read more
  • Data Science
  • Deep Learning
The 5 Most Important Use Cases for Computer Vision
Team statworx
11. November 2020
Read more
  • Data Science
  • Deep Learning
New Trends in Natural Language Processing – How NLP Becomes Suitable for the Mass-Market
Dominique Lade
29. October 2020
Read more
  • Data Engineering
5 Technologies That Every Data Engineer Should Know
Team statworx
22. October 2020
Read more
  • Artificial Intelligence
  • Data Science
  • Machine Learning

Generative Adversarial Networks: How Data Can Be Generated With Neural Networks
Team statworx
10. October 2020
Read more
  • Coding
  • Data Science
  • Deep Learning
Fine-tuning Tesseract OCR for German Invoices
Team statworx
08. October 2020
Read more
  • Artificial Intelligence
  • Machine Learning
Whitepaper: A Maturity Model for Artificial Intelligence
Team statworx
06. October 2020
Read more
  • Data Engineering
  • Data Science
  • Machine Learning
How to Provide Machine Learning Models With the Help Of Docker Containers
Thomas Alcock
01. October 2020
Read more
  • Recap
  • statworx
STATWORX 2.0 – Opening of the New Headquarters in Frankfurt
Julius Heinz
24. September 2020
Read more
  • Machine Learning
  • Python
  • Tutorial
How to Build a Machine Learning API with Python and Flask
Team statworx
29. July 2020
Read more
  • Data Science
  • Statistics & Methods
Model Regularization – The Bayesian Way
Thomas Alcock
15. July 2020
Read more
  • Recap
  • statworx
Off To New Adventures: STATWORX Office Soft Opening
Team statworx
14. July 2020
Read more
  • Data Engineering
  • R
  • Tutorial
How To Dockerize ShinyApps
Team statworx
15. May 2020
Read more
  • Coding
  • Python
Making Of: A Free API For COVID-19 Data
Sebastian Heinz
01. April 2020
Read more
  • Frontend
  • Python
  • Tutorial
How To Build A Dashboard In Python – Plotly Dash Step-by-Step Tutorial
Alexander Blaufuss
26. March 2020
Read more
  • Coding
  • R
Why Is It Called That Way?! – Origin and Meaning of R Package Names
Team statworx
19. March 2020
Read more
  • Data Visualization
  • R
Community Detection with Louvain and Infomap
Team statworx
04. March 2020
Read more
  • Coding
  • Data Engineering
  • Data Science
Testing REST APIs With Newman
Team statworx
26. February 2020
Read more
  • Coding
  • Frontend
  • R
Dynamic UI Elements in Shiny – Part 2
Team statworx
19. Febuary 2020
Read more
  • Coding
  • Data Visualization
  • R
Animated Plots using ggplot and gganimate
Team statworx
14. Febuary 2020
Read more
  • Machine Learning
Machine Learning Goes Causal II: Meet the Random Forest’s Causal Brother
Team statworx
05. February 2020
Read more
  • Artificial Intelligence
  • Machine Learning
  • Statistics & Methods
Machine Learning Goes Causal I: Why Causality Matters
Team statworx
29.01.2020
Read more
  • Data Engineering
  • R
  • Tutorial
How To Create REST APIs With R Plumber
Stephan Emmer
23. January 2020
Read more
  • Recaps
  • statworx
statworx 2019 – A Year in Review
Sebastian Heinz
20. Dezember 2019
Read more
  • Artificial Intelligence
  • Deep Learning
Deep Learning Overview and Getting Started
Team statworx
04. December 2019
Read more
  • Coding
  • Machine Learning
  • R
Tuning Random Forest on Time Series Data
Team statworx
21. November 2019
Read more
  • Data Science
  • R
Combining Price Elasticities and Sales Forecastings for Sales Improvement
Team statworx
06. November 2019
Read more
  • Data Engineering
  • Python
Access your Spark Cluster from Everywhere with Apache Livy
Team statworx
30. October 2019
Read more
  • Recap
  • statworx
STATWORX on Tour: Wine, Castles & Hiking!
Team statworx
18. October 2019
Read more
  • Data Science
  • R
  • Statistics & Methods
Evaluating Model Performance by Building Cross-Validation from Scratch
Team statworx
02. October 2019
Read more
  • Data Science
  • Machine Learning
  • R
Time Series Forecasting With Random Forest
Team statworx
25. September 2019
Read more
  • Coding
  • Frontend
  • R
Dynamic UI Elements in Shiny – Part 1
Team statworx
11. September 2019
Read more
  • Machine Learning
  • R
  • Statistics & Methods
What the Mape Is FALSELY Blamed For, Its TRUE Weaknesses and BETTER Alternatives!
Team statworx
16. August 2019
Read more
  • Coding
  • Python
Web Scraping 101 in Python with Requests & BeautifulSoup
Team statworx
31. July 2019
Read more
  • Coding
  • Frontend
  • R
Getting Started With Flexdashboards in R
Thomas Alcock
19. July 2019
Read more
  • Recap
  • statworx
statworx summer barbecue 2019
Team statworx
21. June 2019
Read more
  • Data Visualization
  • R
Interactive Network Visualization with R
Team statworx
12. June 2019
Read more
No items found.
This is some text inside of a div block.
This is some text inside of a div block.