Skip to content

Commit

Permalink
0.5.1 Release on CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
gdemin committed Jul 7, 2016
1 parent bd4ff23 commit 3364881
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: expss
Type: Package
Title: Some Useful Functions from Spreadsheets and SPSS Statistics
Version: 0.5
Title: Some Useful Functions from Spreadsheets and 'SPSS' Statistics
Version: 0.5.1
Date: 2016-07-07
Author: Gregory Demin
Maintainer: Gregory Demin <[email protected]>
Expand All @@ -11,7 +11,7 @@ Depends:
Imports: foreign, utils, stats
Suggests:
knitr
Description: Package implements several popular functions from Excel ('COUNTIF', 'VLOOKUP', etc.) and 'SPSS Statistics' ('RECODE', 'COUNT', etc.). Also there are functions for basic tables with value labels/variable labels support. Package aimed to help people to move data processing from Excel/SPSS to R.
Description: Package implements several popular functions from Excel ('COUNTIF', 'VLOOKUP', etc.) and 'SPSS' Statistics ('RECODE', 'COUNT', etc.). Also there are functions for basic tables with value labels/variable labels support. Package aimed to help people to move data processing from Excel/'SPSS' to R.
VignetteBuilder: knitr
LazyData: yes
License: GPL (>= 2)
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.5 (07.07.2016)
0.5.1 (07.07.2016)
================
* initial release

42 changes: 21 additions & 21 deletions inst/doc/UsageExamples.html
Original file line number Diff line number Diff line change
Expand Up @@ -161,34 +161,34 @@ <h5>COUNTIF</h5>
<table>
<thead>
<tr class="header">
<th align="left">Excel</th>
<th align="left">R</th>
<th>Excel</th>
<th>R</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="left">“&lt;1”</td>
<td align="left">lt(1)</td>
<td>“&lt;1”</td>
<td>lt(1)</td>
</tr>
<tr class="even">
<td align="left">“&lt;=1”</td>
<td align="left">lte(1)</td>
<td>“&lt;=1”</td>
<td>lte(1)</td>
</tr>
<tr class="odd">
<td align="left">“&lt;&gt;1”</td>
<td align="left">neq(1)</td>
<td>“&lt;&gt;1”</td>
<td>neq(1)</td>
</tr>
<tr class="even">
<td align="left">“=1”</td>
<td align="left">eq(1)</td>
<td>“=1”</td>
<td>eq(1)</td>
</tr>
<tr class="odd">
<td align="left">“&gt;=1”</td>
<td align="left">gte(1)</td>
<td>“&gt;=1”</td>
<td>gte(1)</td>
</tr>
<tr class="even">
<td align="left">“&gt;1”</td>
<td align="left">gt(1)</td>
<td>“&gt;1”</td>
<td>gt(1)</td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -430,8 +430,8 @@ <h5>Simple tables</h5>
## #Total 1 2 1 4</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="kw">cro_mean</span>(<span class="kw">dtfrm</span>(w$b, w$c), w$a) <span class="co"># Mean cost and price by fruits</span></code></pre></div>
<pre><code>## apples oranges peaches #Total
## Cost 70 22 30 36
## Price 80 45 40 52</code></pre>
## Cost 70 22.5 30 36.25
## Price 80 45.0 40 52.50</code></pre>
<p>or, the same with default dataset:</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="kw">.fre</span>(a) <span class="co"># Frequency of fruits</span>
<span class="kw">.cro_cpct</span>(b, a) <span class="co"># Column percent of cost by fruits</span>
Expand Down Expand Up @@ -875,33 +875,33 @@ <h2>Session example</h2>
<table>
<thead>
<tr class="header">
<th align="left"></th>
<th></th>
<th align="right">18 - 25</th>
<th align="right">26 - 35</th>
<th align="right">#Total</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="left">Overall quality. VSX123</td>
<td>Overall quality. VSX123</td>
<td align="right">5.4</td>
<td align="right">5.6</td>
<td align="right">5.5</td>
</tr>
<tr class="even">
<td align="left">Overall quality. SDF456</td>
<td>Overall quality. SDF456</td>
<td align="right">5.3</td>
<td align="right">5.4</td>
<td align="right">5.4</td>
</tr>
<tr class="odd">
<td align="left">Number of likes. VSX123</td>
<td>Number of likes. VSX123</td>
<td align="right">2.0</td>
<td align="right">2.1</td>
<td align="right">2.0</td>
</tr>
<tr class="even">
<td align="left">Number of likes. SDF456</td>
<td>Number of likes. SDF456</td>
<td align="right">2.0</td>
<td align="right">2.1</td>
<td align="right">2.0</td>
Expand Down

0 comments on commit 3364881

Please sign in to comment.