bio-biostars-analytics 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +1 -2
- data/Gemfile +0 -1
- data/VERSION +1 -1
- data/bin/biostar_crawled_stats +9 -9
- metadata +2 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b54d961094a3de1e262295058548143a17483bc8
|
4
|
+
data.tar.gz: f0c90c16b0c5664c156f08e721913e7d847dda93
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5191ee2ce56af78a8d19bcc85d8c1e65afd11ab1ab20c15249936be51bf31a90d803968c676090f7a5a8174d7d0aab23999867a5d4050d95321b86706b648174
|
7
|
+
data.tar.gz: 8bd2ce869fcfa8519ae4ef90e1096339d6d9d23331a4d3effd1b5688118fb8aa7bd2038b4177484c03bbdf87b0eb6bfd38db5fa64330bf387b5b72c094b5fb1e
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/bin/biostar_crawled_stats
CHANGED
@@ -130,7 +130,7 @@ for (age in min(biostar$age):max(biostar$age)) {
|
|
130
130
|
user_consistency[biostar[biostar$age == age, ]$uid] <- user_consistency[biostar[biostar$age == age, ]$uid] + 1
|
131
131
|
}
|
132
132
|
|
133
|
-
png("crawled_participation.png", height=
|
133
|
+
png("crawled_participation.png", height=900, width=1300, unit="px", pointsize=26)
|
134
134
|
bioconsistency(
|
135
135
|
user_consistency[user_consistency > 0],
|
136
136
|
max(biostar$age),
|
@@ -140,7 +140,7 @@ bioconsistency(
|
|
140
140
|
)
|
141
141
|
dev.off()
|
142
142
|
|
143
|
-
png("crawled_users.png", height=
|
143
|
+
png("crawled_users.png", height=900, width=1300, unit="px", pointsize=26)
|
144
144
|
bioeval(
|
145
145
|
biostar[biostar$kind == "asked", ],
|
146
146
|
biostar[biostar$kind == "asked", ]$userfreq,
|
@@ -152,7 +152,7 @@ bioeval(
|
|
152
152
|
)
|
153
153
|
dev.off()
|
154
154
|
|
155
|
-
png("crawled_qvote.png", height=
|
155
|
+
png("crawled_qvote.png", height=900, width=1300, unit="px", pointsize=26)
|
156
156
|
bioeval(
|
157
157
|
biostar[biostar$kind == "asked", ],
|
158
158
|
biostar[biostar$kind == "asked", ]$qvote,
|
@@ -163,7 +163,7 @@ bioeval(
|
|
163
163
|
)
|
164
164
|
dev.off()
|
165
165
|
|
166
|
-
png("crawled_num.png", height=
|
166
|
+
png("crawled_num.png", height=900, width=1300, unit="px", pointsize=26)
|
167
167
|
bioeval(
|
168
168
|
biostar[biostar$kind == "asked", ],
|
169
169
|
biostar[biostar$kind == "asked", ]$anum,
|
@@ -174,7 +174,7 @@ bioeval(
|
|
174
174
|
)
|
175
175
|
dev.off()
|
176
176
|
|
177
|
-
png("crawled_min.png", height=
|
177
|
+
png("crawled_min.png", height=900, width=1300, unit="px", pointsize=26)
|
178
178
|
bioeval(
|
179
179
|
biostar[biostar$kind == "asked", ],
|
180
180
|
biostar[biostar$kind == "asked", ]$amin,
|
@@ -185,7 +185,7 @@ bioeval(
|
|
185
185
|
)
|
186
186
|
dev.off()
|
187
187
|
|
188
|
-
png("crawled_max.png", height=
|
188
|
+
png("crawled_max.png", height=900, width=1300, unit="px", pointsize=26)
|
189
189
|
bioeval(
|
190
190
|
biostar[biostar$kind == "asked", ],
|
191
191
|
biostar[biostar$kind == "asked", ]$amax,
|
@@ -196,7 +196,7 @@ bioeval(
|
|
196
196
|
)
|
197
197
|
dev.off()
|
198
198
|
|
199
|
-
png("crawled_avote.png", height=
|
199
|
+
png("crawled_avote.png", height=900, width=1300, unit="px", pointsize=26)
|
200
200
|
bioeval(
|
201
201
|
biostar[biostar$kind == "asked", ],
|
202
202
|
biostar[biostar$kind == "asked", ]$aavg,
|
@@ -207,7 +207,7 @@ bioeval(
|
|
207
207
|
)
|
208
208
|
dev.off()
|
209
209
|
|
210
|
-
png("crawled_activity_stacked.png", height=
|
210
|
+
png("crawled_activity_stacked.png", height=900, width=1300, unit="px", pointsize=26)
|
211
211
|
biosummary(
|
212
212
|
biostar[biostar$kind == "asked", ],
|
213
213
|
'Biostar Month',
|
@@ -216,7 +216,7 @@ biosummary(
|
|
216
216
|
)
|
217
217
|
dev.off()
|
218
218
|
|
219
|
-
png("crawled_activity.png", height=
|
219
|
+
png("crawled_activity.png", height=900, width=1300, unit="px", pointsize=26)
|
220
220
|
biosummary(
|
221
221
|
biostar[biostar$kind == "asked", ],
|
222
222
|
'Biostar Month',
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bio-biostars-analytics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joachim Baran
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-04-
|
11
|
+
date: 2014-04-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: shoulda
|
@@ -80,20 +80,6 @@ dependencies:
|
|
80
80
|
- - '>='
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 1.4.2
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: rdoc
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - ~>
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '3.12'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - ~>
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '3.12'
|
97
83
|
- !ruby/object:Gem::Dependency
|
98
84
|
name: hpricot
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|