統計解析R たぶんpart3くらい (587レス)
統計解析R たぶんpart3くらい http://mevius.5ch.net/test/read.cgi/tech/1340339592/
上
下
前次
1-
新
通常表示
512バイト分割
レス栞
抽出解除
レス栞
65: デフォルトの名無しさん [] 2014/03/05(水) 19:55:49.67 >データベース的には行指向のほうが普通じゃない? 実世界のデータ自体がそういう形だからね。 数理系の目的以外で使用するのはちと厳しい。 http://mevius.5ch.net/test/read.cgi/tech/1340339592/65
175: デフォルトの名無しさん [] 2018/02/14(水) 19:42:52.67 ID:SwEfqZxS データをこねくり回してグラフ書くにはexcelより融通が利いてしかも早い ような気がする http://mevius.5ch.net/test/read.cgi/tech/1340339592/175
258: デフォルトの名無しさん [] 2019/03/21(木) 11:09:31.67 ID:FMbOnfHj 仕事で急遽Rを勉強している者です。 rvestを用いたスクレイピングについて解る方 いらっしゃいましたらご教授願います。 ?下記ページを参考に rvest html_sessionで「次へ」のリンクを辿ってURLを抜き出し http://estrellita.hatenablog.com/entry/2015/11/11/084310 ?そのURLをリストに追加して ?read_html をかけようとしてるんですが ?no applicable method for 'xml_find_all' applied to an object of class "list" とエラーが出てしまいます。 無知で申し訳ないのですが、原因と解決法わかりますでしょうか? http://mevius.5ch.net/test/read.cgi/tech/1340339592/258
268: デフォルトの名無しさん [sage] 2019/05/12(日) 12:36:17.67 ID:dSbddX8d Ruby では、\d で数字を、+ で1文字以上、to_i で整数型に変換する p ary = "1a23bc04".scan( /\d+/ ).map( &:to_i ) #=> [1, 23, 4] ただし、これでは、負数を処理できない。 負数を処理するには、- を、? で、0か1文字 p ary = "-1a23bc-04".scan( /-?\d+/ ).map( &:to_i ) #=> [-1, 23, -4] 小数点や、e 表記は、もっと難しい。 これらは正規表現じゃなく、ライブラリを探すべき! http://mevius.5ch.net/test/read.cgi/tech/1340339592/268
294: デフォルトの名無しさん [] 2019/09/01(日) 18:56:27.67 ID:kCJZVLuH 情報の小出し禁止 http://mevius.5ch.net/test/read.cgi/tech/1340339592/294
356: デフォルトの名無しさん [sage] 2021/04/05(月) 23:42:08.67 ID:rQp9M9u0 箱ひげ図は義務教育で教えるようになってからじわじわ市民権を得つつある感じ 10年前はほとんど誰も知らなくて見せてもなんだコレだったけど http://mevius.5ch.net/test/read.cgi/tech/1340339592/356
362: デフォルトの名無しさん [sage] 2021/05/06(木) 00:06:44.67 ID:mKuB7+h0 恐らくコード組むしかないかと http://mevius.5ch.net/test/read.cgi/tech/1340339592/362
364: デフォルトの名無しさん [sage] 2021/05/06(木) 13:42:22.67 ID:xWg3mBRt 検索して出てきたコードをいくつか試したけど2進数のせいか どれもround2(0.285,2)が0.28になってしまう このぐらいの桁数の丸めは需要ないのかな http://mevius.5ch.net/test/read.cgi/tech/1340339592/364
399: デフォルトの名無しさん [] 2021/06/26(土) 13:41:22.67 ID:oCVQCLW/ ``` {r round_r, dependson = "dict"} dict = with (dict, { round_theta = \(h) \(x) { reticulate::py $ round_theta (reticulate::np_array (x), h); }; round_1nn = \(h, n) { self = (- n) : n; \(x) purrr::map_dbl (x, \(x) { x = self - x; p = who_min_h (h) (0.5 * x * x); sum (self * p); }); }; round_count = \(h, n) { self = 1 : n - 0.5; \(x) purrr::map_dbl (x, \(x) { sum (ge_h (h) (x - self) - ge_h (h) (- x - self)); }); }; as.list (rlang::current_env ()); }); ``` つづく http://mevius.5ch.net/test/read.cgi/tech/1340339592/399
430: デフォルトの名無しさん [sage] 2022/02/27(日) 22:24:12.67 ID:gyXBEzmR bind_colの代わりにdplyr::left_join()で結合してください http://mevius.5ch.net/test/read.cgi/tech/1340339592/430
441: デフォルトの名無しさん [sage] 2022/03/18(金) 00:14:42.67 ID:XJUTI8hL >>438 繰り返しになりますが、427にあるようにbind_cols(data)でdata2まで作成できたのであれば、あとは437の式で重複するindex列を消せば抽出が完了します マトリクス形式にするにはas.matrix()を使います エラーが出たという433のコードについては439さんがもう回答してくれていますが念のため補足説明します そのコードは作業ディレクトリにsample_dataという名前のフォルダを作ってから試す必要があります Windowsならエクスプローラからフォルダを作成すれば良いでしょう Rでコードを実行するとそのフォルダの中にテスト用のcsvが作成されます(フォルダを覗いてみてください) そのテスト用csvを使った汎用的な方法が色々と紹介されていますので、どういう挙動をするか試してみてください あとは自分の実データに応用すればOKです http://mevius.5ch.net/test/read.cgi/tech/1340339592/441
565: デフォルトの名無しさん [] 2023/12/20(水) 23:21:30.67 ID:H48HUSxu ChatGPTはなんていい奴なんだろう。 クソ野郎: I'd like to test the following code: ``` r 拝借 ``` * The code is written in the programming language R. * "子", "丑", ..., are the Chinese / Japanese zodiac called Eto in Japanese. This code have to calculate the age for given birth date in Eto, e.g. `eto = "ひつじ", tag = date = "10-17"`. Are there any advice to test this code? ChatGPT: Certainly! To test the provided R code, you can follow these steps: 1. Understand the Code: * Make sure you understand the logic of the code and how it calculates age based on the Eto and birthdate information. 1. Run the Code: * Copy and paste the code into an R script or R console. * Ensure that there are no syntax errors or issues when running the code. 1. Test Cases: * Define several test cases with different combinations of Eto, birthdate (tag), and current date. * For example, you can use different values for eto and tag, and verify the calculated age against your expectations. 1. Expected Results: * Manually calculate the expected age for each test case based on the provided Eto information and current date. * Compare the manually calculated age with the age calculated by the R code. 1. Edge Cases: * Test the code with edge cases, such as birthdates close to the boundary of age ranges, to ensure the code handles them correctly. http://mevius.5ch.net/test/read.cgi/tech/1340339592/565
メモ帳
(0/65535文字)
上
下
前次
1-
新
書
関
写
板
覧
索
設
栞
歴
スレ情報
赤レス抽出
画像レス抽出
歴の未読スレ
AAサムネイル
Google検索
Wikipedia
ぬこの手
ぬこTOP
0.043s