Geeky Cody

Geeky Cody SAS and MATLAB training/projects Data processing and analysis has become a major task in a lot of application domains.

Most tools for defining analytical processes lack a user oriented interface- especially when it comes to Big Data analytics. The groundwork every application domain requires revolves around big data and its analysis. This platform will provide a holistic view towards every technology which is closely related to data analytics. Programming base, which otherwise might be a prerequisite will also be

a part of this curriculum. Programming languages are often considered as the building blocks for computer science, a constructed language that is designed to communicate to a machine in both specific and generic domains. The basic behaviour of a machine and its characteristics are often determined by a single program, at times, a program might be a one stop solution to all your problems. A rough approximation can be reached by considering the number of patents this sector has in today’s time. Traditional wisdom about the nature of technology has customarily stressed the importance of necessity and utility. Big data and its analysis has a multi-purpose necessity and utility in the succeeding years. Our approach is to make learning as simple as possible and to make our followers understand that this domain is what the future is based on.

13/05/2017

MATLAB projects and thesis guidance. Select from the list of projects below or give an idea of your own. Complete end to end and fast solutions including the following
-source code of the work
-report
-IEEE formatted paper
-1 video explaining the code
-1 video explaining how to run the code

http://geekycody.com/matlab-projects-list-on-geekycody/

Contact:
Rahul Kashyap
+91-9717480811 (Preferably watsapp)
[email protected]

Also checkout the YouTube channel for MATLAB project videos

https://www.youtube.com/channel/UC9p-VadShXL6aMsVdDlxLgg

Following are all the available projects with GeekyCody. Just click on the link and you will be directed to the specific page. Following will be provided with the project Complete source code Research papers about the topic A video explaining everything about the project Report file Any special requ...

In this we will learn other things about shell-scripting Shortcuts in bash: history: Command that shows you previous com...
10/11/2016

In this we will learn other things about shell-scripting Shortcuts in bash: history: Command that shows you previous commands that you have typed in this shell. Use ! to execute a command corresponding to a number. Ctrl-r: Searches for a command in history. When found, just press Enter to execute it. Ctrl-p: Go to the previous command in history. Ctrl-n: Go to the next command in history. [ 176 more words ]

http://geekycody.com/2016/11/11/ubuntu-level-1-post-4-shell-scripting-ii-linux-ubuntu/

In this we will learn other things about shell-scripting Shortcuts in bash: history: Command that shows you previous commands that you have typed in this shell. Use ! to execute a command corresponding to a number. Ctrl-r: Searches for a command in history. When found, just press Enter to execute it...

There are various types of shell on unix platform through which we do shell scripting: Bourne shell (sh) Bourne Again sh...
12/10/2016

There are various types of shell on unix platform through which we do shell scripting: Bourne shell (sh) Bourne Again shell (bash) Korn shell (ksh) C shell (csh) TOPS C shell (tcsh) To know in which is currently running on your system use the following command in terminal: echo $SHELL To know all the shells that are available on your system then you should use following command: [ 406 more words ]

http://geekycody.com/2016/10/12/shell-scripting/

There are various types of shell on unix platform through which we do shell scripting: Bourne shell (sh) Bourne Again shell (bash) Korn shell (ksh) C shell (csh) TOPS C shell (tcsh) To know in which is currently running on your system use the following command in terminal: echo $SHELL   To know all…

PIPING : This will treat the output of one command as the input to the second command. This is done by using the pipe ch...
26/09/2016

PIPING : This will treat the output of one command as the input to the second command. This is done by using the pipe character i.e., " |". Syntax for the command is as for the same is as follows: command1 | command2 Here, "wc" will count the no.of characters, words and lines while " -l" is used so that only no.of lines get printed. [ 164 more words ]

http://geekycody.com/2016/09/26/piping/

PIPING : This will treat the output of one command as the input to the second command. This is done by using the pipe character i.e., ” |”. Syntax for the command is as for the same is as follows: command1 | command2 Here, “wc” will count the no.of characters, words and lines while ”… Read More »

There are 4 possible queries which are heavily used for analysis specific operations.Them being, $mod   $regex $text $wh...
24/09/2016

There are 4 possible queries which are heavily used for analysis specific operations.Them being, $mod $regex $text $where $mod : $mod selects all documents from a collection where the value of the field divided by the divisor returns a specific remainder. Example 1 : The following query selects all documents from the collection 'equality' where the value of the field 'age' when divided by 4 gives remainder 0. [ 74 more words ]

http://geekycody.com/2016/09/24/mongodb-post-10-analysis-specific-query-operators/

There are 4 possible queries which are heavily used for analysis specific operations.Them being, $mod   $regex $text $where   $mod : $mod selects all documents from a collection where the value of the field divided by the divisor returns a specific remainder. Example 1 : The following query selects…

$type : The operator is used when one is dealing with highly unstructured data ,where for the very same reason the data ...
18/09/2016

$type : The operator is used when one is dealing with highly unstructured data ,where for the very same reason the data types are not predictable. This operator selects the documents where the value of the specified field is a part of the specified BSON type.Thus , it returns the documents where the BSON type of the field matches the BSON type passed to… [ 244 more words ]

http://geekycody.com/2016/09/18/mongodb-post-9-1-specific-query-operators-type/

$type : The operator is used when one is dealing with highly unstructured data ,where for the very same reason the data types are not predictable. This operator selects the documents where the value of the specified field is a part of the specified BSON type.Thus , it returns the documents where the...

$exists : $exists operator , when true , $exists matches the documents that contain the field.It also includes the docum...
18/09/2016

$exists : $exists operator , when true , $exists matches the documents that contain the field.It also includes the documents where the field value is 'null'.When false, the query returns only the documents that do not contain the field.The example with various operators will give a better picture : Example 1 : The following query selects all documents in the collection ' [ 161 more words ]

http://geekycody.com/2016/09/18/mongodb-post-9-specific-query-operators-exists/

$exists : $exists operator , when true , $exists matches the documents that contain the field.It also includes the documents where the field value is ‘null’.When false, the query returns only the documents that do not contain the field.The example with various operators will give a better picture :…

$nor :  $nor performs a logical NOR opeartion on an array of one or more query expression and selects the documents that...
17/09/2016

$nor : $nor performs a logical NOR opeartion on an array of one or more query expression and selects the documents that fail all the query expressions in the array.The example being : Example 1 : The query will return all documents whose field 'age' value is not equal to 25 and has the hobbies field with value not equal to "Singing".

http://geekycody.com/2016/09/18/mongodb-post-8-3-logical-query/

$nor :  $nor performs a logical NOR opeartion on an array of one or more query expression and selects the documents that fail all the query expressions in the array.The example being : Example 1 : The query will return all documents whose field ‘age’ value is not equal to 25 and has the hobbies… Rea...

$not :  performs a logical NOT operation on the specified expression and selects document that do not match the expressi...
17/09/2016

$not : performs a logical NOT operation on the specified expression and selects document that do not match the expression. Example being : Example 1 : The following query will select all documents from the collection 'equality' where the 'age' has value less than or equal 24 or the documents where 'age' field does not exist. It is recommended to use $not for logical dis-junctions and the $ne operator to check the contents of the field directly. One thing to keep in mind ,the $not operator does not support operations with $regex operator.

http://geekycody.com/2016/09/18/mongodb-post-8-2-logical-query-not/

$not :  performs a logical NOT operation on the specified expression and selects document that do not match the expression. Example being :   Example 1 : The following query will select all documents from the collection ‘equality’ where the ‘age’ has value less than or equal 24 or the documents wher...

$and :  performs a logical AND operation on an array of two or more data values and selects the document that satisfies ...
17/09/2016

$and : performs a logical AND operation on an array of two or more data values and selects the document that satisfies all the expressions in the array. Should return a boolean true value in both the cases.The example states : Example 1 : The query selects all the documents from the collection 'equality' where 'age' is equal to… [ 74 more words ]

http://geekycody.com/2016/09/18/mongodb-post-8-1-logical-query/

$and :  performs a logical AND operation on an array of two or more data values and selects the document that satisfies all the expressions in the array. Should return a boolean true value in both the cases.The example states : Example 1 : The query selects all the documents from the collection ‘equ...

Address

Delhi
110019

Alerts

Be the first to know and let us send you an email when Geeky Cody posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Share