r - How to put multiple graphs in one plot with ggvis -


नमूना डेटा:
  y1 = c (1,2,3,4) y2 = सी (6,5,4,3) x = c (1,2,3,4) df = data.frame (x, y1, y2)   

मेरा प्रश्न: < / H3>

मैं ggvis :

  df% & gt;% ggvis (~ x, ~ y1) का उपयोग करके निम्न दो ग्राफ़ को एक में जोड़ना चाहूंगा )% & Gt;% परत_पाथ () df% & gt;% ggvis (~ x, ~ y2)% & gt;% परत_पाथ ()   

हालांकि, निम्न कार्य नहीं करता है:

  df% & gt;% ggvis (~ x, ~ y1)% & gt;% परत_पथ ()% & gt;% ggvis (~ x, ~ y2)% & gt;% परत_पाथ ()    

आप मूल डेटा का उल्लेख कर सकते हैं और एक परत जोड़ सकते हैं:

  डीएफ% & gt;% ggvis (~ x, ~ y1)% & gt;% परत_पाथ ()% & gt;% परत_पथ (डेटा = डीएफ, x = ~ x, y = ~ y2)   < P> यहां छवि विवरण दर्ज करें  

आप डेटा के संदर्भ को निकाल सकते हैं और यह अनुमान लगाया जा सकता है:

  df% & gt;% ggvis (~ x, ~ y1)% & gt;% परत_पाथ ()% & Gt;% + परत_पाठ (x = ~ x, y = ~ y2)    

Comments

Popular posts from this blog

ios - Adding an SKSpriteNode to SKScene from a child SKSpriteNode -

Matlab transpose a table vector -

c# - Textbox not clickable but editable -