This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(foreign) | |
# SAV file? | |
write.table(read.spss("spss_data.sav", file="from_sav_data.csv", quote = FALSE, sep = ",") | |
# DTA file? | |
write.table(read.dta("spss_data.dta"), file="from_dta_data.csv", quote = FALSE, sep = ",") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#==================================================================== | |
# aptのアップデート | |
#==================================================================== | |
yes | sudo apt-get update | |
yes | sudo apt-get upgrade | |
#==================================================================== | |
# 『デスクトップ』『音楽』などの日本語フォルダー名を英語表記にする | |
#==================================================================== |