Skip to content

Commit

Permalink
remove lines
Browse files Browse the repository at this point in the history
  • Loading branch information
lebebr01 committed Oct 1, 2014
1 parent 0912cfe commit bd842d6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 29 deletions.
15 changes: 0 additions & 15 deletions README.Rmd
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
## SPSS to R
=================

[![Build Status](https://travis-ci.org/lebebr01/SPSStoR.svg?branch=master)](https://travis-ci.org/lebebr01/SPSStoR)

A set of functions that takes *SPSS* syntax as input and outputs *R* commands
to do the same analysis or data management tasks.

## Current Features
===============
* Read in Data
* Get for sav files
* Data Manipulation
Expand All @@ -28,7 +26,6 @@ to do the same analysis or data management tasks.


## Upcoming Features
=================
* More Get commands to read in csv, txt, etc.
* Dataset commands
* Value Labels
Expand All @@ -42,17 +39,14 @@ to do the same analysis or data management tasks.
* Examine

## Installing Function
===================
```{r install, eval = FALSE}
library(devtools)
install_github("SPSStoR", username = "lebebr01")
library(SPSStoR)
```

## Examples
=========
### Multiple commands
------------------
```{r multiple}
# Multiple commands in one
spss_to_r(system.file("SPSSsyntax", "getDescExamp.txt", package = "SPSStoR"))
Expand All @@ -61,37 +55,31 @@ spss_to_r(system.file("SPSSsyntax", "getDescExamp.txt", package = "SPSStoR"))


### Aggregate Example
-----------------------
```{r agg, warning = FALSE, message = FALSE}
spss_to_r(system.file("SPSSsyntax", "aggregateExamp.txt", package = "SPSStoR"))
```

### Correlation Example
-------------------------
```{r corr, warning = FALSE, message = FALSE}
spss_to_r(system.file("SPSSsyntax", "correlationsExamp.txt", package = "SPSStoR"))
```

### Crosstab Example
----------------------
```{r crosstab, warning = FALSE, message = FALSE}
spss_to_r(system.file("SPSSsyntax", "crosstabExamp.txt", package = "SPSStoR"))
```

### Sort Cases Example
-----------------------
```{r sortcase, warning = FALSE, message = FALSE}
spss_to_r(system.file("SPSSsyntax", "sortCasesExamp.txt", package = "SPSStoR"))
```

### Descriptives Example
-------------------------
```{r desc, warning = FALSE, message = FALSE}
spss_to_r(system.file("SPSSsyntax", "descriptivesExamp.txt", package = "SPSStoR"))
```

### t-test Examples
--------------------------
```{r ttest}
# t-test one-sample
spss_to_r(system.file("SPSSsyntax", "ttestOneSampExamp.txt", package = "SPSStoR"))
Expand All @@ -101,19 +89,16 @@ spss_to_r(system.file("SPSSsyntax", "getDescExamp.txt", package = "SPSStoR"))
```

### Get Command Example
-------------------
```{r get}
spss_to_r(system.file("SPSSsyntax", "getExamp.txt", package = "SPSStoR"))
```

### Graphics
----------------
```{r graphics}
spss_to_r(system.file("SPSSsyntax", "graphExamps.txt", package = "SPSStoR"))
```

### Frequencies
---------------
```{r frequencies}
spss_to_r(system.file("SPSSsyntax", "frequenciesExamp.txt", package = "SPSStoR"))
```
Expand Down
14 changes: 0 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
## SPSS to R
=================

[![Build Status](https://travis-ci.org/lebebr01/SPSStoR.svg?branch=master)](https://travis-ci.org/lebebr01/SPSStoR)

A set of functions that takes *SPSS* syntax as input and outputs *R* commands
to do the same analysis or data management tasks.

## Current Features
===============
* Read in Data
* Get for sav files
* Get for csv, txt, xls, xlsx files with get data.
Expand All @@ -29,7 +27,6 @@ to do the same analysis or data management tasks.


## Upcoming Features
=================
* Dataset commands
* Value Labels
* Further arguments for descriptives
Expand All @@ -42,7 +39,6 @@ to do the same analysis or data management tasks.
* Examine

## Installing Function
===================

```r
library(devtools)
Expand All @@ -51,7 +47,6 @@ library(SPSStoR)
```

## Examples
=========
### Multiple commands
------------------

Expand All @@ -71,7 +66,6 @@ spss_to_r(system.file("SPSSsyntax", "getDescExamp.txt", package = "SPSStoR"))


### Aggregate Example
-----------------------

```r
spss_to_r(system.file("SPSSsyntax", "aggregateExamp.txt", package = "SPSStoR"))
Expand All @@ -92,7 +86,6 @@ spss_to_r(system.file("SPSSsyntax", "getDescExamp.txt", package = "SPSStoR"))
```

### Correlation Example
-------------------------

```r
spss_to_r(system.file("SPSSsyntax", "correlationsExamp.txt", package = "SPSStoR"))
Expand All @@ -104,7 +97,6 @@ spss_to_r(system.file("SPSSsyntax", "getDescExamp.txt", package = "SPSStoR"))
```

### Crosstab Example
----------------------

```r
spss_to_r(system.file("SPSSsyntax", "crosstabExamp.txt", package = "SPSStoR"))
Expand All @@ -126,7 +118,6 @@ spss_to_r(system.file("SPSSsyntax", "getDescExamp.txt", package = "SPSStoR"))
```

### Sort Cases Example
-----------------------

```r
spss_to_r(system.file("SPSSsyntax", "sortCasesExamp.txt", package = "SPSStoR"))
Expand All @@ -139,7 +130,6 @@ spss_to_r(system.file("SPSSsyntax", "getDescExamp.txt", package = "SPSStoR"))
```

### Descriptives Example
-------------------------

```r
spss_to_r(system.file("SPSSsyntax", "descriptivesExamp.txt", package = "SPSStoR"))
Expand All @@ -154,7 +144,6 @@ spss_to_r(system.file("SPSSsyntax", "getDescExamp.txt", package = "SPSStoR"))
```

### t-test Examples
--------------------------

```r
# t-test one-sample
Expand All @@ -180,7 +169,6 @@ spss_to_r(system.file("SPSSsyntax", "getDescExamp.txt", package = "SPSStoR"))
```

### Get Command Example
-------------------

```r
spss_to_r(system.file("SPSSsyntax", "getExamp.txt", package = "SPSStoR"))
Expand All @@ -193,7 +181,6 @@ spss_to_r(system.file("SPSSsyntax", "getDescExamp.txt", package = "SPSStoR"))
```

### Graphics
----------------

```r
spss_to_r(system.file("SPSSsyntax", "graphExamps.txt", package = "SPSStoR"))
Expand Down Expand Up @@ -227,7 +214,6 @@ spss_to_r(system.file("SPSSsyntax", "getDescExamp.txt", package = "SPSStoR"))
```

### Frequencies
---------------

```r
spss_to_r(system.file("SPSSsyntax", "frequenciesExamp.txt", package = "SPSStoR"))
Expand Down

0 comments on commit bd842d6

Please sign in to comment.