イベントグループの情報を解析します。
主に主催者向けの機能です。グループのデータ分析などに利用します。
- 色々な数
- イベント総数
- プレゼン総数
- 1回あたりの登壇数の平均 (プレゼン総数/イベント総数)
- ユニークメンバー数
- 述べ参加人数
- 新規率 (ユニークメンバー数 / 述べ参加人数)
- 月間のイベント数
- 月間のイベント数の平均
- 年間のイベント数
- 年間のイベント数の平均
- <今後実装予定>: 地域ごとのイベント数
- イベント情報
- 直近の未開催イベント情報
- その他
- グループIDの取得
利用アプリケーション例
(こんなの作ったよ、という連絡お待ちしてます!)
sample
const Connpass = ;const groupname = 'iotlt';const community = `https://.connpass.com/`; async { const cd = {}; // community data cdname = groupname; cdgroupId = await community; //グループIDを取得 cdevent_count = await community; //イベント総数 cdpresentation = await community; //プレゼン数 cdpresentationPerEvent = cdpresentation / cdevent_count; //1回あたりの登壇数平均 cdnext_events = await community; //次回開催イベント情報 cdmonthly_events = await community; //月ごとの開催数 cdmonth_count = Objectlength; //開催月数 cdmonthly_ave = cdevent_count / cdmonth_count; //月間のイベント開催の平均回数 cdyearly_events = await community; //年間の開催数 cdyearly_count = Objectlength; //開催年数 cdyearly_ave = cdevent_count / cdyearly_count; //年間のイベント開催の平均回数 cduniq_member = await community; //ユニークメンバー数 cdtotal_member = await community; //述べ参加人数 cdnew_rate = cduniq_member / cdtotal_member; //新規率 cdevent = await community; //イベント情報 console;};
作者
@n0bisuke