EduTech & AI 인공지능 & IT관련 소식
xAPI - Yetanalytics 활용 사례 본문
xAPI를 가장 잘 활용하고 있는 Yetanalytics 입니다.
아래 내용과 코드를 활용하여 xAPI개념을 잡으시기 바랍니다.
* Yetanalytics & Getting Started with xAPI
xAPI LRS는 자동화 된 분석 대시 보드를 통해 학습 생태계 전반의 데이터를 통합하고 시각화하므로 학습 및 교육 프로그램의 영향을 측정 할 수 있습니다.
대화 형 대시 보드 및 데이터 시각화, 리더 보드 및 이상 ID, 데이터 검색 향상을위한 네트워크 그래프, 사용자 정의 가능한 내보내기 가능한 CSV 보고서
완전히 HTTPS, 변경 불가능한 데이터, ACID 호환 데이터베이스, 가장 까다로운 엔터프라이즈 IT 환경에도 안전한 배포를위한 완벽한 읽기 - 쓰기 분리
모바일 및 온 - 프레미어 배포, 맞춤 KPI보고를위한 기계 학습, 데이터 아키텍처 및 스트림 프로세서 통합 관리, 자동 통합 관리
모든 플랜은 ADL 인증 xAPI LRS 와 함께 제공됩니다 . 엔터프라이즈 계획에는 99.5 % 가동 시간 SLA가 있습니다. 모든 가입자는 교육 리소스, 세계 정상급 고객 서비스 및 프리미엄 지원에 액세스 할 수 있습니다.
Yetanalytics &Getting Started with xAPI
*관련소스
https://www.youtube.com/watch?v=BxebP5wiINc
* 동영상
https://www.learningsolutionsmag.com/articles/2322/getting-started-with-xapi-four-lines-of-code
https://www.yetanalytics.com/
<!doctype html>
<head>
<!-- Includes for ADL's xAPI Wrapper -->
<!-- Download the files from: -->
<!-- https://github.com/adlnet/xAPIWrapper -->
<script type="text/javascript" src="cryptojs_v3.1.2.js"></script>
<script type="text/javascript" src="xapiwrapper.min.js"></script>
<!------------------------------------->
<script>
function send_statement(){
var conf = {
"endpoint" : "https://lrs.adlnet.gov/xapi/",
"auth" : "Basic " + toBase64("xapi-tools:xapi-tools")
};
ADL.XAPIWrapper.changeConfig(conf);
//define the xapi statement being sent
var statement = {
"actor": {
"mbox": "mailto:Tester@example.com",
"name": "Your Name Here",
"objectType": "Agent"
},
"verb": {
"id": "http://example.com/xapi/interacted",
"display": {"en-US": "interacted"}
},
"object": {
"id": "http://example.com/button_example",
"definition": {
"name": {"en-US": "Button example"},
"description": {"en-US": "Example xAPI Button"}
},
"objectType": "Activity"
}
}; //end statement definition
// Dispatch the statement to the LRS
var result = ADL.XAPIWrapper.sendStatement(statement);
}
</script>
</head>
<body>
<button type="button" onclick="send_statement()">Send Statements</button>
</body>
</html>
'Tech. > xAPI' 카테고리의 다른 글
xAPI Verbs (활용되는 동사정보입니다.) (0) | 2018.02.12 |
---|---|
xAPI : c# 샘플코드 입니다. (0) | 2018.02.12 |
xAPI Profiles 이란? (0) | 2018.02.02 |
xAPI 샘플코드 (0) | 2017.12.21 |
xAPI를 지원하는 LMS (0) | 2017.12.21 |