patstat | amazing scripts , mainly in SQL , made by members | Database library

 by   cortext JavaScript Version: Current License: MIT

kandi X-RAY | patstat Summary

kandi X-RAY | patstat Summary

patstat is a JavaScript library typically used in Institutions, Learning, Administration, Public Services, Database applications. patstat has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. You can download it from GitHub.

The PATSTAT database has become the main patent data source for academics using patent data as for statistics users and producers all over the world (for OECD and Eurostat in particular). PATSTAT, which proposes a complete coverage of patenting activities from more than 170 patent offices (and oldest patent documents date from the end of the 19th century), is a valuable tool for the community of researchers because it contains raw data that is collected in a transparent manner. With more than 70 million of patents, this rich database has contributed to greatly improve the quality of empirical research in the field of technometrics. But despite the detailed methodological guidance provided by its producers and by several academic forums, the set up of the database still requires the competencies of a database specialist. Furthermore, the implementation of standard improvements, even when using freely available complementary resources (e.g. REGPAT, proposed by the OECD), necessitates additional resources that can be beyond the reach of academic teams. Building on competencies accumulated over the years and mobilizing dedicated resources, IFRIS UPEM, as a research center specialized in quantitative STI, has incorporated in the PATSTAT-IFRIS database a series of improvements, stemming from outside providers (OECD) or from its own proprietary developments.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              patstat has a low active ecosystem.
              It has 6 star(s) with 4 fork(s). There are 19 watchers for this library.
              OutlinedDot
              It had no major release in the last 6 months.
              There are 2 open issues and 3 have been closed. On average issues are closed in 129 days. There are 5 open pull requests and 0 closed requests.
              It has a neutral sentiment in the developer community.
              The latest version of patstat is current.

            kandi-Quality Quality

              patstat has no bugs reported.

            kandi-Security Security

              patstat has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.

            kandi-License License

              patstat is licensed under the MIT License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              patstat releases are not available. You will need to build from source code and install.

            Top functions reviewed by kandi - BETA

            kandi has reviewed patstat and discovered the below as its top functions. This is intended to give you an instant insight into patstat implemented functionality, and help decide if they suit your requirements.
            • get the number of records
            • Run a worker .
            • Requests a batch translation
            • Update all workers
            • Executes a connection string
            • Validate and validate inputs .
            • translates a list of translations to a batch of translations
            • Initialize the stats
            • Shows the progress bar
            • Adds a worker to the console .
            Get all kandi verified functions for this library.

            patstat Key Features

            No Key Features are available at this moment for patstat.

            patstat Examples and Code Snippets

            No Code Snippets are available at this moment for patstat.

            Community Discussions

            QUESTION

            SQL Server [PATSTAT] query | Multiple charindex values &
            Asked 2019-Sep-26 at 17:41

            Hello Stack Overflow Community.

            I am retrieving data with SQL from PATSTAT (patent data base from the European Patent Office). I have two issues (see below). For your info the PATSAT sql commands are quite limited.

            I. Charindex with multiple values

            I am looking for specific two specific patent groups ["Y02E" and "Y02C"] and want to retrieve data on these. I have found that using the charindex function works if I insert one group;

            ...

            ANSWER

            Answered 2019-Sep-26 at 17:41

            For your part 2 here is a sample data i created And here is the code. It gives me YOUR requested output.

            Source https://stackoverflow.com/questions/58121518

            QUESTION

            Invalid data for ipc_version in line 10 32-33
            Asked 2018-Mar-17 at 17:13

            When I import a CSV file into SAS by following codes,

            ...

            ANSWER

            Answered 2018-Mar-16 at 20:46

            &:$29 is probably your problem. & there is telling SAS to wait for two consecutive delimiters (this is one way of dealing with delimiters embedded in the data, though it is not a common one). That's not (apparently) correct for your data, as far as I can tell.

            Remove the & and see if it imports correctly.

            Source https://stackoverflow.com/questions/49329208

            QUESTION

            import a PATSTAT csv into SAS
            Asked 2018-Mar-13 at 15:13

            When I import TLS201_APPLN.csv form PATSTAT database into SAS 9.4 (Unicode support), a lot of similar codes showed like below. What should I do to fix it?

            ...

            ANSWER

            Answered 2018-Mar-13 at 15:13

            Fix the import to correctly ready in apln_nr_original.

            Note the bolded sections below.

            So I counted out the number of variables and I think it's the 8th variable, which looks like it should be, AT2007/000486 from the record. However, SAS has it as ., which means it thinks it should be a numeric, when it's actually a character variable. So you need to modify your code to account for that. I'd suggest how to do that but you didn't include any code.

            NOTE: Invalid data for appln_nr_original in line 5286 53-65. RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+--- 5286 6697,AT,2007000486,W ,2007-10-17,2007,WO2007AT00486,AT2007/000486,PI,0,Y,N,N,2006-12-22, 89 2006,1110640,2008-07-03,2008,6698,0,38109624,4532,10,2,2,1 146

            appln_id=6697 appln_auth=AT appln_nr=2007000486 appln_kind=W appln_filing_date=2007-10-17 appln_filing_year=2007 appln_nr_epodoc=WO2007AT00486 appln_nr_original=. ipr_type=PI

            Source https://stackoverflow.com/questions/49241303

            QUESTION

            import csv into SAS;WARNING: A character that could not be transcoded has been replaced in record XXX
            Asked 2018-Mar-07 at 16:43

            When I import a large csv into SAS, it always shows that ‘WARNING: A Character that could not be transcoded has been replaced in record XXXXX’. What should I do for it?

            Thanks in advance.

            ...

            ANSWER

            Answered 2018-Mar-07 at 16:43

            You need to start SAS with unicode support to read UTF-8 characters.

            You could try setting ENCODING=ANY on the INFILE or FILENAME statement in your current SAS session. The encoding shouldn't matter for the numbers. But if you really have UTF-8 characters that cannot be transcoded into single byte WLATIN1 characters then you will probably have trouble working with those strings.

            Source https://stackoverflow.com/questions/49140823

            QUESTION

            MySQL query for patents citations
            Asked 2017-Nov-01 at 16:05

            I would like to find the citations of all patents under the IPC code G01S, from the international patent database (PATSTAT). The following query returns all patents under G01S.

            ...

            ANSWER

            Answered 2017-Nov-01 at 16:05

            I found a way to add the citation table to my query.

            Source https://stackoverflow.com/questions/46979518

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install patstat

            You can download it from GitHub.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/cortext/patstat.git

          • CLI

            gh repo clone cortext/patstat

          • sshUrl

            git@github.com:cortext/patstat.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link