The install.packages() function in R is the automatic unzipping utility that gets and install packages in R.
How do I find out what directory R has chosen to store packages?
How can I change the directory in which R stores and accesses packages?
...
Hello,
I have a Delphi component which I want to install and have it available at the component palette in Delphi but not in C++ Builder. In BDS/RAD 2006 and above I can either have it installed for both personalities or none.
I need to do so because this component uses 3rd party libraries that doesn't support C++ Builder.
I have look...
I need to execute my code after finalization of SysUtils unit.
I've placed my code in separate unit and included it first in uses clause of dpr-file, like this:
project Project1;
uses
MyUnit, // <- my separate unit
SysUtils,
Classes,
SomeOtherUnits;
procedure Test;
begin
//
end;
begin
SetProc(Test);
end.
MyUnit look...
I used packagemaker to package a App, now I want to add another app with a option, if user check the option , it can be installed automatically, because another app will be packaged with packagemaker, so I didn't include it with a folder with packagemaker, how to do it ? Thank you !!!
...
I am starting out with Google's App Engine in Java. I have seen the tutorial video but I do not understand the naming of the project package.
It is going to be a guestbook, that's why the name is guestbook, I understand that part. But after that I see package name. 1)Is that something you import into the project, or is is something you ...
I want to upgrade the package ggplot2:
library(ggplot2)
packageDescription("ggplot2")["Version"]
> 0.8.3
But the current version is 0.8.7.
I tried update.packages(), which seemed to work OK. But it still returned older version 0.8.3.
So I downloaded and installed the package source from Cran, which says 0.8.7 in the download page.
...
I want to separate my classes into separate packages in my android project in eclipse however whenever I do this I get errors. Does anyone know how to do this without having eclipse kill my project?
...
In one of my directories I have all .java files which belong to one package ("game"). Now I want to create one .java file which does not belong to this package and which imports the "game" package. If I create a new file and write import game; then Eclipse complains that it does not know what the "game" package means. Can somebody please...
Good afternoon, all.
I'm not too hopeful for a "yes" here, but if anyone can figure it out, the folks at SO can.
I have a Java project that has the following package structure:
src
|-net
| |-binarymuse
| |-gwt
| |-client
| | |-ui
| | |-project
| | |-Project.java
| |-Project.gwt.xml
|-overview.html
I would...
I have some classes in my current project which have the wrong package declaration (they are in the wrong folder for their declared package.)
Unfortunately, fixing the problem by moving the class is not an option. Is there a way I can get eclipse to ignore the error?
...
hi expert, hi develop code in python to scan wifi and send to the server, its working fine when execute manually, but i packaged it via http://www.python-packager.com by uploading my .py file and they create package for me as deb file for linux, and i download it and install the package but nothing happen when i click the .exe or set it...
Hi I am using ActivePerl 5.10.1 on Win XP.
I can't find Lex package from the PPM list.
Can I install other package to enable Parse::Lex?
...
Is there a package naming convention for Python like Java's com.company.actualpackage? Most of the time I see simple, potentially colliding package names like "web".
If there is no such convention, is there a reason for it? What do you think of using the Java naming convention in the Python world?
...
i'm confused with the term "global" in AS3. within my main controller class, i've defined a variable (myNum) which i would like to access throughout all class .as files within the same package.
//Controller class
package myApp
{
public var myNum:int = 24; //try to access myNum in mySprite class
public class Main extends Sprite
{...
Is there any website where we can come to know the information about
Technical implementation Possibilities
Where this package will be used extensively
why this is used?
For example TimerTask, this is used to scheduling a task to execute in a batch mode.
Other than this do we have any other scenarios where we can use it?
Please shar...
Hi,
I would like to package multiple app in a single app. So donwloading one app and install that in an iPhone will install 3/4 apps. Something like java midlet suits having multiple Midlets in a single jar file.
Is it possible by using multiple target or bundle, aggregate target etc.?
...
Found some info on porting packages from python 2 to 3 using distribute setuptools in below link.
http://packages.python.org/distribute/python3.html
I have a C api which could be build using python 2.x, but i need to build it in python 3.x.
Can it be done using distribute.
Do anyone have idea on this?
...
As per the below link porting python packages from 2 to 3 would be easy when distribute is used.
Is tat true?
anyone tried before?
karnol
...
Hello Everyone
I would like to know how you set up your projects in Java
For example, in my current work-project, a six year old J2EE app with approximately 2 million LoC, we only have one project in Eclipse. The package structure is split into tiers and then domains, so it follows guidelines from Sun/Oracle. A huge ant-script is build...
Given a Python package, how can I automatically find all its sub-packages?
I used to have a function that would just browse the file system, looking for folders that have an __init__.py* file in them, but now I need a method that would work even if the whole package is in an egg.
...