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

  • Coding
  • Data Science
  • Machine Learning
Zero-Shot Text Classification
Fabian Müller
17.4.2025
Read more
  • Coding
  • Python
Making Of: A Free API For COVID-19 Data
Sebastian Heinz
17.4.2025
Read more
  • Coding
  • Python
  • R
R and Python: Using Reticulate to Get the Best of Both Worlds
Team statworx
17.4.2025
Read more
  • Coding
  • Frontend
  • R
Getting Started With Flexdashboards in R
Thomas Alcock
17.4.2025
Read more
  • Artificial Intelligence
  • Machine Learning
  • Statistics & Methods
Machine Learning Goes Causal I: Why Causality Matters
Team statworx
17.4.2025
Read more
  • Coding
  • Data Visualization
  • R
Coordinate Systems in ggplot2: Easily Overlooked and Rather Underrated
Team statworx
17.4.2025
Read more
  • Data Engineering
  • R
  • Tutorial
How To Create REST APIs With R Plumber
Stephan Emmer
17.4.2025
Read more
  • Coding
  • Frontend
  • R
Dynamic UI Elements in Shiny – Part 1
Team statworx
17.4.2025
Read more
  • Recaps
  • statworx
statworx 2019 – A Year in Review
Sebastian Heinz
17.4.2025
Read more
  • Recap
  • statworx
STATWORX on Tour: Wine, Castles & Hiking!
Team statworx
17.4.2025
Read more
  • Recap
  • statworx
Off To New Adventures: STATWORX Office Soft Opening
Team statworx
17.4.2025
Read more
  • Recap
  • statworx
STATWORX on Tour: Year-End-Event in Belgium
Sebastian Heinz
17.4.2025
Read more
  • Recap
  • statworx
statworx summer barbecue 2019
Team statworx
17.4.2025
Read more
  • Coding
  • R
  • Tutorial
Compiling R Code in Sublime Text
Team statworx
17.4.2025
Read more
  • Coding
  • R
  • Tutorial
Make RStudio Look the Way You Want — Because Beauty Matters
Team statworx
17.4.2025
Read more
  • Recaps
  • statworx
2020 – A Year in Review for Me and GPT-3
Sebastian Heinz
17.4.2025
Read more
  • Coding
  • R
Master R shiny: One trick to build maintainable and scaleable event chains
Team statworx
17.4.2025
Read more
  • Coding
  • Python
  • Statistics & Methods
Ensemble Methods in Machine Learning: Bagging & Subagging
Team statworx
15.4.2025
Read more
  • Deep Learning
  • Python
  • Tutorial
Using Reinforcement Learning to play Super Mario Bros on NES using TensorFlow
Sebastian Heinz
15.4.2025
Read more
  • Coding
  • Machine Learning
  • R
Tuning Random Forest on Time Series Data
Team statworx
15.4.2025
Read more
  • Data Science
  • Statistics & Methods
Model Regularization – The Bayesian Way
Thomas Alcock
15.4.2025
Read more
  • Coding
  • Python
  • Statistics & Methods
How to Speed Up Gradient Boosting by a Factor of Two
Team statworx
15.4.2025
Read more
  • Coding
  • Frontend
  • R
Dynamic UI Elements in Shiny – Part 2
Team statworx
15.4.2025
Read more
  • Coding
  • R
Why Is It Called That Way?! – Origin and Meaning of R Package Names
Team statworx
15.4.2025
Read more
  • Data Engineering
  • Python
Access your Spark Cluster from Everywhere with Apache Livy
Team statworx
15.4.2025
Read more
  • Coding
  • Data Engineering
  • Data Science
Testing REST APIs With Newman
Team statworx
14.4.2025
Read more
  • Machine Learning
  • Python
  • R
XGBoost Tree vs. Linear
Fabian Müller
14.4.2025
Read more
  • Data Science
  • R
Combining Price Elasticities and Sales Forecastings for Sales Improvement
Team statworx
14.4.2025
Read more
  • Data Science
  • Machine Learning
  • R
Time Series Forecasting With Random Forest
Team statworx
14.4.2025
Read more
  • Data Visualization
  • R
Community Detection with Louvain and Infomap
Team statworx
14.4.2025
Read more
  • Machine Learning
Machine Learning Goes Causal II: Meet the Random Forest’s Causal Brother
Team statworx
11.4.2025
Read more
  • Coding
  • Data Visualization
  • R
Animated Plots using ggplot and gganimate
Team statworx
8.4.2025
Read more
  • Artificial Intelligence
AI Trends Report 2025: All 16 Trends at a Glance
Tarik Ashry
25.2.2025
Read more
  • Artificial Intelligence
  • Data Science
  • GenAI
How a CustomGPT Enhances Efficiency and Creativity at hagebau
Tarik Ashry
15.1.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.1.2025
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Back to the Future: The Story of Generative AI (Episode 4)
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Back to the Future: The Story of Generative AI (Episode 3)
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Back to the Future: The Story of Generative AI (Episode 2)
Tarik Ashry
6.12.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
6.12.2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Custom AI Chatbots: Combining Strong Performance and Rapid Integration
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Back to the Future: The Story of Generative AI (Episode 1)
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • Data Culture
  • Human-centered AI
AI in the Workplace: How We Turn Skepticism into Confidence
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • GenAI
  • statworx
Generative AI as a Thinking Machine? A Media Theory Perspective
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • Data Culture
  • Human-centered AI
How managers can strengthen the data culture in the company
Tarik Ashry
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
How we developed a chatbot with real knowledge for Microsoft
Isabel Hermes
6.12.2024
Read more
  • Data Science
  • Data Visualization
  • Frontend Solution
Why Frontend Development is Useful in Data Science Applications
Jakob Gepp
6.12.2024
Read more
  • Artificial Intelligence
  • Human-centered AI
  • statworx
the byte - How We Built an AI-Powered Pop-Up Restaurant
Sebastian Heinz
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • GenAI
The Future of Customer Service: Generative AI as a Success Factor
Tarik Ashry
6.12.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
6.12.2024
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
6.12.2024
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
6.12.2024
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
6.12.2024
Read more
  • Artificial Intelligence
  • Recap
  • statworx
Big Data & AI World 2023 Recap
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • Statistics & Methods
A first look into our Forecasting Recommender Tool
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
On Can, Do, and Want – Why Data Culture and Death Metal have a lot in common
David Schlepps
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
How to create AI-generated avatars using Stable Diffusion and Textual Inversion
Team statworx
6.12.2024
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
6.12.2024
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Machine Learning
GPT-4 - A categorisation of the most important innovations
Mareike Flögel
6.12.2024
Read more
  • Artificial Intelligence
  • Human-centered AI
  • Strategy
Knowledge Management with NLP: How to easily process emails with AI
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
3 specific use cases of how ChatGPT will revolutionize communication in companies
Ingo Marquart
6.12.2024
Read more
  • Artificial Intelligence
  • Machine Learning
  • Tutorial
Paradigm Shift in NLP: 5 Approaches to Write Better Prompts
Team statworx
6.12.2024
Read more
  • Recap
  • statworx
Ho ho ho – Christmas Kitchen Party
Julius Heinz
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
Real-Time Computer Vision: Face Recognition with a Robot
Sarah Sester
6.12.2024
Read more
  • Recap
  • statworx
statworx @ UXDX Conf 2022
Markus Berroth
6.12.2024
Read more
  • Data Engineering
  • Tutorial
Data Engineering – From Zero to Hero
Thomas Alcock
6.12.2024
Read more
  • Recap
  • statworx
statworx @ vuejs.de Conf 2022
Jakob Gepp
6.12.2024
Read more
  • Data Engineering
  • Data Science
Application and Infrastructure Monitoring and Logging: metrics and (event) logs
Team statworx
6.12.2024
Read more
  • Data Engineering
  • Data Science
  • Python
How to Scan Your Code and Dependencies in Python
Thomas Alcock
6.12.2024
Read more
  • Cloud Technology
  • Data Engineering
  • Data Science
How to Get Your Data Science Project Ready for the Cloud
Alexander Broska
6.12.2024
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
6.12.2024
Read more
  • R
The helfRlein package – A collection of useful functions
Jakob Gepp
6.12.2024
Read more
  • Data Engineering
  • Data Science
  • Machine Learning
Data-Centric AI: From Model-First to Data-First AI Processes
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • Human-centered AI
  • Machine Learning
DALL-E 2: Why Discrimination in AI Development Cannot Be Ignored
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Human-centered AI
statworx AI Principles: Why We Started Developing Our Own AI Guidelines
Team statworx
6.12.2024
Read more
  • Recap
  • statworx
5 highlights from the Zurich Digital Festival 2021
Team statworx
6.12.2024
Read more
  • Recap
  • statworx
Unfold 2022 in Bern – by Cleverclip
Team statworx
6.12.2024
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
6.12.2024
Read more
  • Machine Learning
  • Python
  • Tutorial
How to Build a Machine Learning API with Python and Flask
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • Human-centered AI
  • Machine Learning
Break the Bias in AI
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Cloud Technology
  • Data Science
  • Sustainable AI
How to Reduce the AI Carbon Footprint as a Data Scientist
Team statworx
6.12.2024
Read more
  • Coding
  • Data Engineering
Automated Creation of Docker Containers
Stephan Emmer
6.12.2024
Read more
  • Coding
  • Data Visualization
  • R
Customizing Time and Date Scales in ggplot2
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • Machine Learning
5 Types of Machine Learning Algorithms With Use Cases
Team statworx
6.12.2024
Read more
  • Coding
  • Machine Learning
  • Python
Data Science in Python - Getting started with Machine Learning with Scikit-Learn
Team statworx
6.12.2024
Read more
  • Recap
  • statworx
2022 and the rise of statworx next
Sebastian Heinz
6.12.2024
Read more
  • Recap
  • statworx
As a Data Science Intern at statworx
Team statworx
6.12.2024
Read more
  • Coding
  • Data Science
  • Python
How to Automatically Create Project Graphs With Call Graph
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • Human-centered AI
  • Machine Learning
  • statworx
Column: Human and machine side by side
Sebastian Heinz
6.12.2024
Read more
  • Data Engineering
  • Data Science
  • Machine Learning
Deploy and Scale Machine Learning Models with Kubernetes
Team statworx
6.12.2024
Read more
  • Coding
  • Python
  • Tutorial
statworx Cheatsheets – Python Basics Cheatsheet for Data Science
Team statworx
6.12.2024
Read more
  • Cloud Technology
  • Data Engineering
  • Machine Learning
3 Scenarios for Deploying Machine Learning Workflows Using MLflow
Team statworx
6.12.2024
Read more
  • Data Science
  • statworx
  • Strategy
STATWORX meets DHBW – Data Science Real-World Use Cases
Team statworx
6.12.2024
Read more
  • Coding
  • Deep Learning
Car Model Classification I: Transfer Learning with ResNet
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
Car Model Classification IV: Integrating Deep Learning Models With Dash
Dominique Lade
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • Machine Learning
Car Model Classification III: Explainability of Deep Learning Models With Grad-CAM
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Coding
  • Deep Learning
Car Model Classification II: Deploying TensorFlow Models in Docker Using TensorFlow Serving
No items found.
6.12.2024
Read more
  • AI Act
Potential Not Yet Fully Tapped – A Commentary on the EU’s Proposed AI Regulation
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Deep Learning
  • statworx
Creaition – revolutionizing the design process with machine learning
Team statworx
6.12.2024
Read more
  • Data Science
  • Deep Learning
The 5 Most Important Use Cases for Computer Vision
Team statworx
6.12.2024
Read more
  • Artificial Intelligence
  • Data Science
  • Machine Learning

Generative Adversarial Networks: How Data Can Be Generated With Neural Networks
Team statworx
6.12.2024
Read more
No items found.
This is some text inside of a div block.
This is some text inside of a div block.