Publications by mishou:
Likert_sample1
R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within t...
594 sym R (262 sym/2 pcs) 1 img
Learn how to make functions
I.関数を作ると便利 Rの関数の作り方を学びます。 II.関数は便利 関数を使うと便利です。 例えば、次のような試験結果のデータがあるとします。 a、b、c、、、は名前で、goi1、goi2、goi3、、、は語彙試験の回数です。 library(tidyverse) goi_wide <- read_csv("https://pastebi...
415 sym R (1830 sym/9 pcs)
Creating functions in R
I.関数を作ると便利 次の解説を参考にしてRの関数の作り方を学びます。 https://b-rodrigues.github.io/modern_R/defining-your-own-functions.html II.関数の使用例 1.データ 基礎から学ぶに先立って、実際の使用例を紹介します。 次のような試験結果のデータがあるとします。 a...
675 sym R (1976 sym/13 pcs)
Understand dictionaries as a way of thinking
Dictionaries 辞書は、キー(keys)と値(values)からなり、キーで値を取得する形のデータ形式で、ツリー状に階層のあるデータを扱うのに適しています。 表計算アプリケーションに慣れていると、ものごとを四角く考えがちですが、日常生活では、むしろツリー...
469 sym R (483 sym/7 pcs) 1 img
How to access keys and values in nested dictionaries
I.Nested dictionaries 階層のある辞書の処理方法を学びます。 統計解析では、データがJSONファイルの場合がよくあります。 PythonではJSONを辞書に変換して扱うので、階層のある辞書の処理方法は、JSONを処理するためにも必要です。 II.For loopsの場合 次の解説で学び...
337 sym R (547 sym/3 pcs)
Handling JSON with Python and R
Rの場合 データを読み込みます。 # import libraries library(jsonlite) # import JSON files library(purrr) # functional programming library(dplyr) # data wrangling # import the data raw_json <- jsonlite::fromJSON("jargons.json") raw_jsonはリストのリストです。レベル1を表示します。 $マークはリストを表し...
1111 sym R (5387 sym/15 pcs)
Conflicts in Asia
アジアの紛争データをRのpurrrで読む I.何をする? Rのpurrrを用いたデータの取得と概要把握の方法を紹介します。 データは次のEast Asia (5 February 2021)です。 https://acleddata.com/curated-data-files/ II.データの読み込みと概要の把握 データを読み込みます。データはExcel�...
872 sym R (2897 sym/9 pcs)
Learning purrr
I.Learning map, pmap and imap For loopsに代るものとしてapply()がありますが、ここで学ぶのは、これらより簡潔な表現のmapと pmapとimapです。 次の解説にしたがって学びます。 The power of three: purrr-poseful iteration in R with map, pmap and imap ライブラリをインポートして、データ�...
445 sym R (1645 sym/3 pcs) 1 img
Computer jargons for beginners
プログラミング学習のための用語集 プログラムをはじめて学ぶときに役立つ用語集です。 Pythonのdictionaryで作成しています。検索方法やデータ・フレームへの転換方法も説明します。 作成した用語集は次です。随時更新します。 ## ## 用語: Python ## categories: la...
277 sym R (15101 sym/10 pcs)
Learning Machine Learning
What is Machine Learning? 機械学習を基礎から学びます。そもそも、機械学習とはなんでしょう? 次の説明では、特定のデータや結果に限らず適応できる一般的なアルゴリズムであるとされます。 Machine learning is the idea that there are generic algorithms that can tell you something ...
673 sym R (1087 sym/2 pcs)