How do I plot a matrix of ratings?How do stacked denoising autoencoders workSimple website and attaching Data Analysis to user information for feedbackMatrix Dimension for Linear regression coefficientsMachine learning to predict 8*8 matrix values using three independent matricesPython API for publicly available datasetsPrice difference predictions curve almost vanishedScaling and standardizingHow do I combine two electromagnetic readings to predict the position of a sensor?How can the convolution operation be implemented as a matrix-vector multiplication?Which matrix represents the similarity between words when using SVD?

Employer demanding to see degree after poor code review

What does this symbol on the box of power supply mean?

Is real public IP Address hidden when using a system wide proxy in Windows 10?

Is it possible to play as a necromancer skeleton?

Why did David Cameron offer a referendum on the European Union?

Who will lead the country until there is a new Tory leader?

A steel cutting sword?

number headings

Do photons bend spacetime or not?

Does Nitrogen inside commercial airliner wheels prevent blowouts on touchdown?

Python program to take in two strings and print the larger string

Is the derivative with respect to a fermion field Grassmann-odd?

Could a 19.25mm revolver actually exist?

Plot twist where the antagonist wins

Why does Mjolnir fall down in Age of Ultron but not in Endgame?

How to illustrate the Mean Value theorem?

At what point in European history could a government build a printing press given a basic description?

My players want to grind XP but we're using milestone advancement

NIntegrate doesn't evaluate

Caught 2 students cheating together on the final exam that I proctored

Using credit/debit card details vs swiping a card in a payment (credit card) terminal

Construct a word ladder

I unknowingly submitted plagarised work

Why is this Simple Puzzle impossible to solve?



How do I plot a matrix of ratings?


How do stacked denoising autoencoders workSimple website and attaching Data Analysis to user information for feedbackMatrix Dimension for Linear regression coefficientsMachine learning to predict 8*8 matrix values using three independent matricesPython API for publicly available datasetsPrice difference predictions curve almost vanishedScaling and standardizingHow do I combine two electromagnetic readings to predict the position of a sensor?How can the convolution operation be implemented as a matrix-vector multiplication?Which matrix represents the similarity between words when using SVD?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1












$begingroup$


I have a .csv file called ratings.csv with the following structure:



userID, movieID, rating
3, 12, 5
2, 7, 6


The rating scale goes from 0 to 5 stars. I want to be able to plot the sparsity of the matrix like it's done in the following picture:



pictiure



As you can see, ratings scale goes from 0 to 5 on the right. It is a very well thought plot.



I have Matlab, Python, R etc. Could you come up with something and help me? I’ve tried hard but I cannot find the way to do it.










share|improve this question











$endgroup$


















    1












    $begingroup$


    I have a .csv file called ratings.csv with the following structure:



    userID, movieID, rating
    3, 12, 5
    2, 7, 6


    The rating scale goes from 0 to 5 stars. I want to be able to plot the sparsity of the matrix like it's done in the following picture:



    pictiure



    As you can see, ratings scale goes from 0 to 5 on the right. It is a very well thought plot.



    I have Matlab, Python, R etc. Could you come up with something and help me? I’ve tried hard but I cannot find the way to do it.










    share|improve this question











    $endgroup$














      1












      1








      1





      $begingroup$


      I have a .csv file called ratings.csv with the following structure:



      userID, movieID, rating
      3, 12, 5
      2, 7, 6


      The rating scale goes from 0 to 5 stars. I want to be able to plot the sparsity of the matrix like it's done in the following picture:



      pictiure



      As you can see, ratings scale goes from 0 to 5 on the right. It is a very well thought plot.



      I have Matlab, Python, R etc. Could you come up with something and help me? I’ve tried hard but I cannot find the way to do it.










      share|improve this question











      $endgroup$




      I have a .csv file called ratings.csv with the following structure:



      userID, movieID, rating
      3, 12, 5
      2, 7, 6


      The rating scale goes from 0 to 5 stars. I want to be able to plot the sparsity of the matrix like it's done in the following picture:



      pictiure



      As you can see, ratings scale goes from 0 to 5 on the right. It is a very well thought plot.



      I have Matlab, Python, R etc. Could you come up with something and help me? I’ve tried hard but I cannot find the way to do it.







      machine-learning recommender-system data-visualization






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 20 at 14:03









      nbro

      3,3202826




      3,3202826










      asked May 19 at 21:15









      naveganteXnaveganteX

      1306




      1306




















          2 Answers
          2






          active

          oldest

          votes


















          2












          $begingroup$

          You're looking for a heatmap. Check out e.g. https://stackoverflow.com/q/33282368/3924118 (if you like Python more than the others). See also this documentation.






          share|improve this answer











          $endgroup$




















            1












            $begingroup$

            I did it!



            A = importdata('u.data');
            user_id = A(:, 1);
            movie_id = A(:, 2);
            rating = A(:, 3);

            % Build matrix R and w (weights matrix)
            R = zeros(943, 1682);
            w = zeros(943, 1682);
            for i=1:100000
            R(user_id(i), movie_id(i)) = rating(i);
            w(user_id(i), movie_id(i)) = 1;
            end


            m = HeatMap(R)
            ax = hm.plot; % 'ax' will be a handle to a standard MATLAB axes.
            colorbar('Peer', ax); % Turn the colorbar on
            caxis(ax, [0 5]); % Adjust the color limits


            Output:



            enter image description here






            share|improve this answer









            $endgroup$













              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "658"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              noCode: true, onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fai.stackexchange.com%2fquestions%2f12414%2fhow-do-i-plot-a-matrix-of-ratings%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2












              $begingroup$

              You're looking for a heatmap. Check out e.g. https://stackoverflow.com/q/33282368/3924118 (if you like Python more than the others). See also this documentation.






              share|improve this answer











              $endgroup$

















                2












                $begingroup$

                You're looking for a heatmap. Check out e.g. https://stackoverflow.com/q/33282368/3924118 (if you like Python more than the others). See also this documentation.






                share|improve this answer











                $endgroup$















                  2












                  2








                  2





                  $begingroup$

                  You're looking for a heatmap. Check out e.g. https://stackoverflow.com/q/33282368/3924118 (if you like Python more than the others). See also this documentation.






                  share|improve this answer











                  $endgroup$



                  You're looking for a heatmap. Check out e.g. https://stackoverflow.com/q/33282368/3924118 (if you like Python more than the others). See also this documentation.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited May 20 at 14:02

























                  answered May 19 at 22:46









                  nbronbro

                  3,3202826




                  3,3202826























                      1












                      $begingroup$

                      I did it!



                      A = importdata('u.data');
                      user_id = A(:, 1);
                      movie_id = A(:, 2);
                      rating = A(:, 3);

                      % Build matrix R and w (weights matrix)
                      R = zeros(943, 1682);
                      w = zeros(943, 1682);
                      for i=1:100000
                      R(user_id(i), movie_id(i)) = rating(i);
                      w(user_id(i), movie_id(i)) = 1;
                      end


                      m = HeatMap(R)
                      ax = hm.plot; % 'ax' will be a handle to a standard MATLAB axes.
                      colorbar('Peer', ax); % Turn the colorbar on
                      caxis(ax, [0 5]); % Adjust the color limits


                      Output:



                      enter image description here






                      share|improve this answer









                      $endgroup$

















                        1












                        $begingroup$

                        I did it!



                        A = importdata('u.data');
                        user_id = A(:, 1);
                        movie_id = A(:, 2);
                        rating = A(:, 3);

                        % Build matrix R and w (weights matrix)
                        R = zeros(943, 1682);
                        w = zeros(943, 1682);
                        for i=1:100000
                        R(user_id(i), movie_id(i)) = rating(i);
                        w(user_id(i), movie_id(i)) = 1;
                        end


                        m = HeatMap(R)
                        ax = hm.plot; % 'ax' will be a handle to a standard MATLAB axes.
                        colorbar('Peer', ax); % Turn the colorbar on
                        caxis(ax, [0 5]); % Adjust the color limits


                        Output:



                        enter image description here






                        share|improve this answer









                        $endgroup$















                          1












                          1








                          1





                          $begingroup$

                          I did it!



                          A = importdata('u.data');
                          user_id = A(:, 1);
                          movie_id = A(:, 2);
                          rating = A(:, 3);

                          % Build matrix R and w (weights matrix)
                          R = zeros(943, 1682);
                          w = zeros(943, 1682);
                          for i=1:100000
                          R(user_id(i), movie_id(i)) = rating(i);
                          w(user_id(i), movie_id(i)) = 1;
                          end


                          m = HeatMap(R)
                          ax = hm.plot; % 'ax' will be a handle to a standard MATLAB axes.
                          colorbar('Peer', ax); % Turn the colorbar on
                          caxis(ax, [0 5]); % Adjust the color limits


                          Output:



                          enter image description here






                          share|improve this answer









                          $endgroup$



                          I did it!



                          A = importdata('u.data');
                          user_id = A(:, 1);
                          movie_id = A(:, 2);
                          rating = A(:, 3);

                          % Build matrix R and w (weights matrix)
                          R = zeros(943, 1682);
                          w = zeros(943, 1682);
                          for i=1:100000
                          R(user_id(i), movie_id(i)) = rating(i);
                          w(user_id(i), movie_id(i)) = 1;
                          end


                          m = HeatMap(R)
                          ax = hm.plot; % 'ax' will be a handle to a standard MATLAB axes.
                          colorbar('Peer', ax); % Turn the colorbar on
                          caxis(ax, [0 5]); % Adjust the color limits


                          Output:



                          enter image description here







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered May 20 at 3:34









                          naveganteXnaveganteX

                          1306




                          1306



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Artificial Intelligence Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              Use MathJax to format equations. MathJax reference.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fai.stackexchange.com%2fquestions%2f12414%2fhow-do-i-plot-a-matrix-of-ratings%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                              Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

                              Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?