Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Paste
P71214
(An Untitled Masterwork)
Active
Public
Actions
Authored by
Urbanecm_WMF
on Wed, Nov 27, 12:03 PM.
Edit Paste
Archive Paste
View Raw File
Subscribe
Mute Notifications
Award Token
Flag For Later
Tags
None
Referenced Files
F57753037: raw-paste-data.txt
Wed, Nov 27, 12:03 PM
2024-11-27 12:03:42 (UTC+0)
Subscribers
None
from
wmfdata
import
mariadb
,
utils
import
pandas
as
pd
import
warnings
with
warnings
.
catch_warnings
():
warnings
.
simplefilter
(
'ignore'
)
dfs
=
[]
for
wiki
in
utils
.
get_dblist
(
'growthexperiments'
):
dfs
.
append
(
mariadb
.
run
(
'''
SELECT DATABASE() AS wiki, up_value, COUNT(*)
FROM user_properties
WHERE
up_property = 'growthexperiments-homepage-variant'
GROUP BY up_value
'''
,
wiki
))
df
=
pd
.
concat
(
dfs
)
print
(
utils
.
df_to_remarkup
(
df
,
index
=
False
))
Event Timeline
Urbanecm_WMF
created this paste.
Wed, Nov 27, 12:03 PM
2024-11-27 12:03:42 (UTC+0)
Urbanecm_WMF
updated the paste's language from
autodetect
to
python
.
Urbanecm_WMF
mentioned this in
T379146: Review remaining growthexperiments-homepage-variant rows at enwiki
.
Wed, Nov 27, 12:13 PM
2024-11-27 12:13:20 (UTC+0)
Log In to Comment