Search (3 results, page 1 of 1)

  • × author_ss:"Vargas-Quesada, B."
  1. Quirin, A.; Cordón, O.; Guerrero-Bote, V.P.; Vargas-Quesada, B.; Moya-Anegón, F.: A quick MST-based algorithm to obtain Pathfinder networks (oo, n - 1) (2008) 0.01
    0.00918649 = product of:
      0.02755947 = sum of:
        0.02755947 = product of:
          0.08267841 = sum of:
            0.08267841 = weight(_text_:network in 2371) [ClassicSimilarity], result of:
              0.08267841 = score(doc=2371,freq=6.0), product of:
                0.19402927 = queryWeight, product of:
                  4.4533744 = idf(docFreq=1398, maxDocs=44218)
                  0.043569047 = queryNorm
                0.42611307 = fieldWeight in 2371, product of:
                  2.4494898 = tf(freq=6.0), with freq of:
                    6.0 = termFreq=6.0
                  4.4533744 = idf(docFreq=1398, maxDocs=44218)
                  0.0390625 = fieldNorm(doc=2371)
          0.33333334 = coord(1/3)
      0.33333334 = coord(1/3)
    
    Abstract
    Network scaling algorithms such as the Pathfinder algorithm are used to prune many different kinds of networks, including citation networks, random networks, and social networks. However, this algorithm suffers from run time problems for large networks and online processing due to its O(n**4) time complexity. In this article, we introduce a new alternative, the MST-Pathfinder algorithm, which will allow us to prune the original network to get its PFNET(oo, n - 1) in just O(n**2 · log n) time. The underlying idea comes from the fact that the union (superposition) of all the Minimum Spanning Trees extracted from a given network is equivalent to the PFNET resulting from the Pathfinder algorithm parameterized by a specific set of values (r = oo and q = n - 1), those usually considered in many different applications. Although this property is well-known in the literature, it seems that no algorithm based on it has been proposed, up to now, to decrease the high computational cost of the original Pathfinder algorithm. We also present a mathematical proof of the correctness of this new alternative and test its good efficiency in two different case studies: one dedicated to the post-processing of large random graphs, and the other one to a real world case in which medium networks obtained by a cocitation analysis of the scientific domains in different countries are pruned.
  2. Gómez-Núñez, A.J.; Vargas-Quesada, B.; Moya-Anegón, F. de: Updating the SCImago journal and country rank classification : a new approach using Ward's clustering and alternative combination of citation measures (2016) 0.01
    0.0053038225 = product of:
      0.015911467 = sum of:
        0.015911467 = product of:
          0.047734402 = sum of:
            0.047734402 = weight(_text_:network in 2499) [ClassicSimilarity], result of:
              0.047734402 = score(doc=2499,freq=2.0), product of:
                0.19402927 = queryWeight, product of:
                  4.4533744 = idf(docFreq=1398, maxDocs=44218)
                  0.043569047 = queryNorm
                0.2460165 = fieldWeight in 2499, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  4.4533744 = idf(docFreq=1398, maxDocs=44218)
                  0.0390625 = fieldNorm(doc=2499)
          0.33333334 = coord(1/3)
      0.33333334 = coord(1/3)
    
    Abstract
    This study introduces a new proposal to refine the classification of the SCImago Journal and Country Rank (SJR) platform by using clustering techniques and an alternative combination of citation measures from an initial 18,891 SJR journal network. Thus, a journal-journal matrix including simultaneously fractionalized values of direct citation, cocitation, and coupling was symmetrized by cosine similarity and later transformed into distances before performing clustering. The results provided a new cluster-based subject structure comprising 290 clusters that emerge by executing Ward's clustering in two phases and using a mixed labeling procedure based on tf-idf scores of the original SJR category tags and significant words extracted from journal titles. In total, 13,716 SJR journals were classified using this new cluster-based scheme. Although more than 5,000 journals were omitted in the classification process, the method produced a consistent classification with a balanced structure of coherent and well-defined clusters, a moderated multiassignment of journals, and a softer concentration of journals over clusters than in the original SJR categories. New subject disciplines such as "nanoscience and nanotechnology" or "social work" were also detected, providing evidence of good performance of our approach in refining the journal classification and updating the subject classification structure.
  3. Quirin, A.; Cordón, O.; Santamaría, J.; Vargas-Quesada, B.; Moya-Anegón, F.: ¬A new variant of the Pathfinder algorithm to generate large visual science maps in cubic time (2008) 0.00
    0.004243058 = product of:
      0.012729174 = sum of:
        0.012729174 = product of:
          0.038187522 = sum of:
            0.038187522 = weight(_text_:network in 2112) [ClassicSimilarity], result of:
              0.038187522 = score(doc=2112,freq=2.0), product of:
                0.19402927 = queryWeight, product of:
                  4.4533744 = idf(docFreq=1398, maxDocs=44218)
                  0.043569047 = queryNorm
                0.1968132 = fieldWeight in 2112, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  4.4533744 = idf(docFreq=1398, maxDocs=44218)
                  0.03125 = fieldNorm(doc=2112)
          0.33333334 = coord(1/3)
      0.33333334 = coord(1/3)
    
    Abstract
    In the last few years, there is an increasing interest to generate visual representations of very large scientific domains. A methodology based on the combined use of ISI-JCR category cocitation and social networks analysis through the use of the Pathfinder algorithm has demonstrated its ability to achieve high quality, schematic visualizations for these kinds of domains. Now, the next step would be to generate these scientograms in an on-line fashion. To do so, there is a need to significantly decrease the run time of the latter pruning technique when working with category cocitation matrices of a large dimension like the ones handled in these large domains (Pathfinder has a time complexity order of O(n4), with n being the number of categories in the cocitation matrix, i.e., the number of nodes in the network). Although a previous improvement called Binary Pathfinder has already been proposed to speed up the original algorithm, its significant time complexity reduction is not enough for that aim. In this paper, we make use of a different shortest path computation from classical approaches in computer science graph theory to propose a new variant of the Pathfinder algorithm which allows us to reduce its time complexity in one order of magnitude, O(n3), and thus to significantly decrease the run time of the implementation when applied to large scientific domains considering the parameter q = n - 1. Besides, the new algorithm has a much simpler structure than the Binary Pathfinder as well as it saves a significant amount of memory with respect to the original Pathfinder by reducing the space complexity to the need of just storing two matrices. An experimental comparison will be developed using large networks from real-world domains to show the good performance of the new proposal.