incanter

    1熱度

    1回答

    我有,可以歸納爲以下的問題一個問題:當一個查詢的結果是一個值,sel/$返回一個數字,當它是一個以上的值,它是一個序列: (with-data (to-dataset [[1 2] [3 4]]) ($ :col-1)) 產率(2 4),但 (with-data (to-dataset [[1 2]]) ($ :col-1)) 產量2. 我想它在所有時間的序列,因爲我想

    4熱度

    1回答

    我考慮的Clojure /咒術作爲替代至R ,只是想知道如果Clojure的/咒術有能力做到以下幾點:SQL語句的 導入結果作爲一個數據集(我使用dbGetQuery在R中執行此操作)。 重塑數據集 - 將行轉換爲也稱爲「pivot」/「unpivot」的列 - 我在R中使用reshape,reshape2包(在R世界中稱爲熔化和鑄造數據)執行此操作。 保存重構數據設置爲

    0熱度

    1回答

    我嘗試編寫以數據集作爲參數並在單個xy圖上查看來自數據集的所有數據的宏。 例如,我創建數據集 (def test-data [["RECALL" "CAFE" "CLIPPERS"] [0 0 0] [14 15 13] [160 146 155]]) ,寫這個 (defmacro figure [datas] (let [x `(range 0 (nrow ~da

    0熱度

    1回答

    我該如何洗牌incanter數據集? (shuffle (:rows data-set)) 只返回地圖的clojure向量。

    4熱度

    1回答

    我下面的線性迴歸例如here (use '(incanter core stats datasets)) (def plant-growth (to-matrix (get-dataset :plant-growth) :dummies true)) (def y (sel plant-growth :cols 0)) (def x (sel plant-growth :cols [1 2]

    3熱度

    1回答

    我與咒術玩弄,因爲我學習Clojure的,當我嘗試下雷音創造REPL矩陣我不斷收到一條錯誤消息: user=> (use 'incanter.io) nil user=> (use 'incanter.core) nil user=> (def A (matrix [[1 2 3] [4 5 6] [7 8 9]])) NoSuchMethodError edu.emory.mathcs

    4熱度

    1回答

    我正在創建一個機器人相對於地標距離的圖。 x軸是測量的數量,y軸是到地標的距離,其中應該包括誤差線以表示對該估計的置信度。 我一直沒有找到一個很好的方法來添加誤差棒的基礎上,方差的值。目前,我在每次測量中創建一個箱形圖,方法是使用我的方差值生成關於平均值的樣本數據。這顯然不是理想的,因爲它在計算上效率低下,並且是我試圖顯示的信息的不精確表示。 如何做到這一點的任何想法?理想情況下,它將在xy圖上,

    1熱度

    1回答

    考慮到輸出作爲 [[[-0.6925523827697917 -0.4095089425269985] [-0.03856010899727634 0.8427233420960013] [-2.609986195686694E-13 -1.680032093051418E-12]] [[0.7203362514229046 -0.3494564274369062]]]

    1熱度

    1回答

    假設我有一個3×3矩陣 (def myMatrix (matrix (range 9) 3)) ; A 3x3 matrix ; ------------- ; 0.00e+00 1.00e+00 2.00e+00 ; 3.00e+00 4.00e+00 5.00e+00 ; 6.00e+00 7.00e+00 8.00e+00 我可以使用$來獲取元素,說第二行第一列 ($ 1 0

    1熱度

    1回答

    (require '[incanter.core :as icore]) ;; Assume dataset "data" is already loaded by incanter.core/read-dataset ;; Let's examine the columns (note that Volume is the 5th column) (icore/col-names da