Displaying 8 results from an estimated 8 matches for "app_year".
Did you mean:
app_read
2018 Jan 03
3
HOW TO FILTER DATA
...a by selecting only certain IPC in that
column and delete other rows which do not have my required IPCs. Please,
can anybody guide me doing it, also the IPC codes are string variables.
The data is somewhat like below, but its a huge dataset containing more
than 11 million rows
Appln_id|Prio_Year|App_year|IPC
1|1999|2000|H04Q007/32
1|1999|2000|G06K019/077
1|1999|2000|H01R012/18
1|1999|2000|G06K017/00
1|1999|2000|H04M001/2745
1|1999|2000|G06K007/00
1|1999|2000|H04M001/02
1|1999|2000|H04M001/275
2|1991|1992|C12N015/62
2|1991|1992|C12N015/09
2|1991|1992|C07K019/00
2|1991|1992|C07K016/26
Thanking You...
2018 Jan 03
0
HOW TO FILTER DATA
...at
> column and delete other rows which do not have my required IPCs. Please,
> can anybody guide me doing it, also the IPC codes are string variables.
>
> The data is somewhat like below, but its a huge dataset containing more
> than 11 million rows
>
>
> Appln_id|Prio_Year|App_year|IPC
> 1|1999|2000|H04Q007/32
> 1|1999|2000|G06K019/077
> 1|1999|2000|H01R012/18
> 1|1999|2000|G06K017/00
> 1|1999|2000|H04M001/2745
> 1|1999|2000|G06K007/00
> 1|1999|2000|H04M001/02
> 1|1999|2000|H04M001/275
> 2|1991|1992|C12N015/62
> 2|1991|1992|C12N015/09
> 2|1991...
2008 Oct 22
1
NEW: COM32 module to alias
...lt;string.h>
#ifdef __COM32__ /* Allow targetting Linux, etc to test */
#include <syslinux/boot.h> /* syslinux_run_command() */
#endif /* __COM32__ */
#define ALIAS_CMD_SZ 128
// #define DO_DEBUG 1
#define APP_LONGNAME "Alias COM32"
#define APP_NAME "alias"
#define APP_YEAR "2008"
#define APP_AUTHOR "Gene Cumm"
#define APP_VER "beta-b002"
int main(int argc, char *argv[]){
char cmdstr[ALIAS_CMD_SZ]; // Command string to execute
int curpos; // Current position in cmdstr; Use memcpy rather than strcat
int arglen; // length of current ar...
2008 Oct 27
0
NEW: COM32 module to alias (Revised)
...OMMAND_LINE_SIZE
#define ALIAS_CMD_SZ COMMAND_LINE_SIZE
#else
#define ALIAS_CMD_SZ 2048
#endif /* COMMAND_LINE_SIZE */
#endif /* MAX_CMDLINE_LEN */
// #define DO_DEBUG 1 /* Uncomment this for additional output
#define APP_LONGNAME "Alias COM32"
#define APP_NAME "alias"
#define APP_YEAR "2008"
#define APP_AUTHOR "Gene Cumm"
#define APP_VER "beta-b003"
int main(int argc, char *argv[])
{
char cmdstr[ALIAS_CMD_SZ]; // Command string to execute
int curpos; // Current position in cmdstr; Use memcpy rather than strcat
int arglen; // length of current a...
2009 Feb 22
2
NEW: COM32 module to run another command, optionally clearing the screen
...COMMAND_LINE_SIZE */
#endif /* MAX_CMDLINE_LEN */
#define NUM_NL 40
/* Number of lines to clear */
#ifdef DO_DEBUG
# define DEBUG_PRINTF printf
#else
# define DEBUG_PRINTF(f, ...) ((void)0)
#endif /* DO_DEBUG */
#define APP_LONGNAME "Run COM32"
#define APP_NAME "run"
#define APP_YEAR "2009"
#define APP_AUTHOR "Gene Cumm"
#define APP_VER "beta-b005"
int main(int argc, char *argv[])
{
char cmdstr[RUN_CMD_SZ]; /* Command string to execute */
int curpos; /* Current position in cmdstr; Use memcpy rather than
strcat */
int arglen; /* length of cur...
2009 Mar 05
0
[PATCH 5/5] COM32/rosh: Improvements
...UG2 1
+//*/
+/* Uncomment the above line for super-debugging output; Must have regular
+ * debugging enabled; Comment to remove.
+ */
#include "rosh.h"
#define APP_LONGNAME "Read-Only Shell"
#define APP_NAME "rosh"
#define APP_AUTHOR "Gene Cumm"
-#define APP_YEAR "2008"
-#define APP_VER "beta-b032"
+#define APP_YEAR "2009"
+#define APP_VER "beta-b040"
void rosh_version()
{
@@ -43,17 +47,6 @@ void rosh_version()
APP_AUTHOR);
}
-void rosh_help(int type)
-{
- rosh_version();
- switch (type) {
- case 2: puts(ros...
2009 Feb 15
2
COM32 module: Read-Only shell
...ne DO_DEBUG2 1
+ /* Uncomment the above line for super-debugging output; Must have
regular debugging enabled; Comment to remove */
+
+#include "rosh.h"
+
+#define APP_LONGNAME "Read-Only Shell"
+#define APP_NAME "rosh"
+#define APP_AUTHOR "Gene Cumm"
+#define APP_YEAR "2008"
+#define APP_VER "beta-b032"
+
+void rosh_version()
+{
+ printf("%s v %s; (c) %s %s.\n", APP_LONGNAME, APP_VER, APP_YEAR, \
+ APP_AUTHOR);
+}
+
+void rosh_help(int type)
+{
+ rosh_version();
+ switch (type) {
+ case 2: puts(rosh_help_str2);
+ break;
+ case 1:...
2010 Jun 27
1
[PATCH] ROSH: Upgraded
...UG2 1
+//*/
+/* Uncomment the above line for super-debugging output; Must have regular
+ * debugging enabled; Comment to remove.
+ */
#include "rosh.h"
#define APP_LONGNAME "Read-Only Shell"
#define APP_NAME "rosh"
#define APP_AUTHOR "Gene Cumm"
-#define APP_YEAR "2008"
-#define APP_VER "beta-b032"
+#define APP_YEAR "2010"
+#define APP_VER "beta-b062"
void rosh_version(void)
{
@@ -43,37 +45,13 @@ void rosh_version(void)
APP_AUTHOR);
}
-void rosh_help(int type)
+void print_beta(void)
{
- rosh_version();...