Skip to content

Commit 6b4b9c3

Browse files
committed
Merge branch 'master' of https://github.com/CHKim5/LMSstat
2 parents de47415 + c02c860 commit 6b4b9c3

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

README.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The package includes
55

66
* Simple Statistics :u-test, t-test, post hocs of Anova and Kruskal Wallis with FDR adjusted values
77

8-
* Bar, Box, Dot plots with significance (u-test, t-test, post hocs of Anova and Kruskal Wallis)
8+
* Bar, Box, Dot, Violin plots with significance (u-test, t-test, post hocs of Anova and Kruskal Wallis)
99

1010
* Scaling & Transformation
1111

@@ -131,22 +131,30 @@ write.csv(Statfile[["Result"]],"p_value_result.csv") # Write csv with all the p
131131
### Plots
132132

133133
```
134-
# Makes a subdirectory and saves boxplots for all the variables
134+
# Makes a subdirectory and saves box plots for all the variables
135135
AS_boxplot(Statfile,asterisk = "u_test")
136136
137-
# Makes a subdirectory and saves dotplots for all the variables
137+
# Makes a subdirectory and saves dot plots for all the variables
138138
AS_dotplot(Statfile,asterisk = "t_test")
139139
140-
# Makes a subdirectory and saves barplots for all the variables
141-
AS_barplot(Statfile,asterisk = "Scheffe")
140+
# Makes a subdirectory and saves bar plots for all the variables
141+
AS_barplot(Statfile,asterisk = "Scheffe")
142+
143+
# Makes a subdirectory and saves violin plots for all the variables
144+
AS_violinplot(Statfile,asterisk = "Scheffe")
142145
```
143146

144147

145-
     **AS_boxplot(Statfile)**      **AS_dotplot(Statfile)**       **AS_barplot(Statfile)**
148+
          **AS_boxplot(Statfile)**              **AS_dotplot(Statfile)**
149+
<p align="center">
150+
<img src="https://user-images.githubusercontent.com/77651662/125714687-1908d6eb-b2bd-4e25-8ef0-62c24466c32a.png" width="350" height="250">
151+
<img src="https://user-images.githubusercontent.com/77651662/125714704-d7dab67e-03c0-4e35-b86a-36723f7c63de.png" width="350" height="250">
152+
</p>
153+
154+
&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;**AS_barplot(Statfile)**&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;**AS_violinplot(Statfile)**
146155
<p align="center">
147-
<img src="https://user-images.githubusercontent.com/77651662/125714687-1908d6eb-b2bd-4e25-8ef0-62c24466c32a.png" width="225" height="250">
148-
<img src="https://user-images.githubusercontent.com/77651662/125714704-d7dab67e-03c0-4e35-b86a-36723f7c63de.png" width="225" height="250">
149156
<img src="https://user-images.githubusercontent.com/77651662/125715925-0878ec77-30bf-4859-8e56-316d98b6d520.jpg" width="350" height="250">
157+
<img src="https://user-images.githubusercontent.com/77651662/141611647-1bc0f049-fcd1-4cb4-a713-5aa30f24dcb1.png" width="350" height="250">
150158
</p>
151159

152160
##### Adjustable parameters

0 commit comments

Comments
 (0)