2014-07-24から1日間の記事一覧

JavascriptでCSVを読み取り表をつくる2

以下バグ。 要素ごどに操作できてない。 <html lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>tryjquery_hide_p test</title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script> $(document).ready(function(){ $("p#time").html("start…</meta></head></html>

NULLに数字を足すときはNULLでなくなるので注意

R

RでNULL型に数字をたすとエラーなしに、空っぽのnumeric型の変数ができるんだな。。 いいっちゃいいんだけど、なんか注意しないとバグの原因になりそうでやっかい。。> a NULL > a > a NULL > cat(a,"\n")> mode(a) [1] "NULL" > a+3 numeric(0) > cat(a+3,"…